Skip to content

Instantly share code, notes, and snippets.

@mazlum
Created March 18, 2019 11:36
Show Gist options
  • Save mazlum/598a9c72ac9852be973b869d3935df2c to your computer and use it in GitHub Desktop.
Save mazlum/598a9c72ac9852be973b869d3935df2c to your computer and use it in GitHub Desktop.
greatest common divisor
def gcd(x, y):
while y != 0:
(x, y) = (y, x % y)
return x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment