Skip to content

Instantly share code, notes, and snippets.

@kendallm
Last active October 18, 2020 04:05
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 kendallm/2968b85a2760f77b2ac328a672516c75 to your computer and use it in GitHub Desktop.
Save kendallm/2968b85a2760f77b2ac328a672516c75 to your computer and use it in GitHub Desktop.
Computes GCD of x,y
def euclid(x,y):
if x < y:
temp = y
y = x
x = temp
if y == 0:
return x
return euclid(y, x % y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment