Skip to content

Instantly share code, notes, and snippets.

@lb5160482
Created June 27, 2018 00:10
Show Gist options
  • Save lb5160482/394a1fed62d503bc32cc6d985d3c4553 to your computer and use it in GitHub Desktop.
Save lb5160482/394a1fed62d503bc32cc6d985d3c4553 to your computer and use it in GitHub Desktop.
Get GCD(Greatest Comman Devider)
int getGcd(int a, int b) {
return b == 0 ? a : getGcd(b, a % b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment