Created
February 6, 2011 18:41
-
-
Save juanriaza/813592 to your computer and use it in GitHub Desktop.
Algoritmo Euclides
This file contains hidden or 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 euclides(a,b): | |
return a if b == 0 else euclides(b, a%b) | |
def euclides_ext(a,b): | |
if b == 0: | |
return [1,0,a] | |
else: | |
x,y,d = euclides_ext(b, a%b) | |
return [y, x - (a//b)*y, d] | |
print euclides(112,70) | |
print euclides_ext(112,70) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment