GCD(Greatest Common Divisor), LCM(Least Common Multiple)

wnajsldkf·2023년 1월 16일
0

Algorithm

목록 보기
27/58

유클리드 호제법에 의해

GCD

private static int findGCD(int n, int m) {
    if (n % m == 0) {
        return m;
     }
     return findGCD(m, n % m);
}

LCM

private static int findLCM(int n, int m) {
    return n * m / gcd;
}
profile
https://mywnajsldkf.tistory.com -> 이사 중

0개의 댓글