Created
January 30, 2017 11:30
-
-
Save emmettna/98849c02558bc5645d7eccb35a5a2c63 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static 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