Skip to content

Instantly share code, notes, and snippets.

@dmj111
Created February 21, 2012 23:47
Show Gist options
  • Save dmj111/1879909 to your computer and use it in GitHub Desktop.
Save dmj111/1879909 to your computer and use it in GitHub Desktop.
test python
def gcd(a,b):
while a != 0:
a, b = b, a % b
return b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment