import java.util.*;
class Solution {
public int solution(int N, int M) {
return N / gcd(N, M);
}
private int gcd(int a, int b) {
int tmp;
while (a % b != 0) {
tmp = a;
a = b;
b = tmp % b;
}
return b;
}
}
Codility - ChocolatesByNumbers
2018년 9월 21일 금요일
·