Skip to content

Instantly share code, notes, and snippets.

@nuit
Created July 9, 2014 21:58
Show Gist options
  • Save nuit/0dd63c7ca0870f6533bc to your computer and use it in GitHub Desktop.
Save nuit/0dd63c7ca0870f6533bc to your computer and use it in GitHub Desktop.
Algoritmo Estendido de Euclides
def xmdc(a,b):
if b==0:
return [1,0,a]
else:
x,y,d=xmdc(b, a%b)
return [y,x-(a//b)*y,d]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment