Skip to content

Instantly share code, notes, and snippets.

@oleglomako
Last active December 12, 2016 00:13
Show Gist options
  • Select an option

  • Save oleglomako/50aeffac6e2df9a89665cfeb380cbceb to your computer and use it in GitHub Desktop.

Select an option

Save oleglomako/50aeffac6e2df9a89665cfeb380cbceb to your computer and use it in GitHub Desktop.
public int gcd(int p, int q){
if(q==0) return p;
int r=p%q;
return gcd(q,r);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment