Skip to content

Instantly share code, notes, and snippets.

@SukJinKim
Created July 4, 2021 14:47
int gcd(int a, int b)
{
return (b) ? gcd(b, a % b) : a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment