Skip to content
Snippets Groups Projects
Commit a422b255 authored by nicolas.albanesi's avatar nicolas.albanesi
Browse files

removed some new lines

parent 7d2e3f91
Branches
No related tags found
No related merge requests found
......@@ -28,7 +28,6 @@ def pgcd_etendu(a, b):
x[1] = 0
y[1] = 1
while (r[etape-1] != 0):
r[etape] = a % b
q[etape] = a // b
......@@ -40,7 +39,6 @@ def pgcd_etendu(a, b):
return r[etape-2], x[etape-2], y[etape-2]
def pgcd_etendu_verif(a, b, x, y, pgcd):
if (pgcd == (a*x + b*y)):
return True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment