Created
March 18, 2019 11:36
-
-
Save mazlum/598a9c72ac9852be973b869d3935df2c to your computer and use it in GitHub Desktop.
greatest common divisor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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