↓ 1 callersFunctiondiophantine >>> diophantine(10,6,14) (-7.0, 14.0) >>> diophantine(391,299,-69) (9.0, -12.0) But above equation has one more solution i.e.,
25. Blockchain/diophantine_equation.py:8
↓ 1 callersFunctionextended_gcd >>> extended_gcd(10, 6) (2, -1, 2) >>> extended_gcd(7, 5) (1, -2, 3) ** extended_gcd function is used when d = gcd(a,b) is
25. Blockchain/modular_division.py:75
↓ 1 callersFunctionextended_gcd >>> extended_gcd(10, 6) (2, -1, 2) >>> extended_gcd(7, 5) (1, -2, 3)
25. Blockchain/diophantine_equation.py:101