Пример #1
0
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     return python_gcdex(a, b)
Пример #2
0
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     return map(SymPyIntegerType, python_gcdex(int(a), int(b)))
Пример #3
0
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     return python_gcdex(a, b)
Пример #4
0
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     return map(SymPyIntegerType, python_gcdex(int(a), int(b)))