You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changi Cho edited this page Jan 10, 2020
·
1 revision
gcd
intgcd(int a, int b) {
if (b > a) swap(a, b);
int new_a = a, new_b = b;
while (b != 0) {
int temp = new_a%new_b;
new_a = new_b;
new_b = temp;
}
return new_a > 0 ? new_a : -new_a;
}