Exemplo n.º 1
0
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     h, s, t = gmpy_gcdex(a, b)
     return s, t, h
Exemplo n.º 2
0
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     h, s, t = gmpy_gcdex(a, b)
     return s, t, h