Skip to content

Instantly share code, notes, and snippets.

@calvingiles
Last active December 30, 2015 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save calvingiles/f32c8c83e2cb348dcd61 to your computer and use it in GitHub Desktop.
Save calvingiles/f32c8c83e2cb348dcd61 to your computer and use it in GitHub Desktop.
Return the greatest common denominator of a and b.
def GCD(a, b):
if b:
return GCD(b, a % b)
return a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment