Skip to content

Instantly share code, notes, and snippets.

@cocodrips
Created July 6, 2014 03:59
Show Gist options
  • Save cocodrips/d505069c0cee9f335ff5 to your computer and use it in GitHub Desktop.
Save cocodrips/d505069c0cee9f335ff5 to your computer and use it in GitHub Desktop.
gcd
int gcd(int a, int b){
while(b){
int bb = b;
b = a % b;
a = bb;
}
return a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment