Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def gcd(x, y):
- if min(x, y) == 0:
- return max(x, y)
- return gcd(max(x, y) % min(x, y), min(x, y))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement