Skip to content

Instantly share code, notes, and snippets.

@chancez
Created October 20, 2012 21:32
Show Gist options
  • Save chancez/3924888 to your computer and use it in GitHub Desktop.
Save chancez/3924888 to your computer and use it in GitHub Desktop.
def gcdRecur(a, b):
print a
if b==0:
return a
else:
return gcdRecur(b,a % b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment