gcd抽象方法

BigInt gcd(
  1. BigInt other
)

返回当前大整数与other的最大公约数。

如果任一数字非零,则结果为可以同时整除thisother的最大整数。

最大公约数与顺序无关,因此x.gcd(y)始终与y.gcd(x)相同。

对于任何整数xx.gcd(x)等于x.abs()

如果thisother都为零,则结果也为零。

示例

print(BigInt.from(4).gcd(BigInt.from(2))); // 2
print(BigInt.from(8).gcd(BigInt.from(4))); // 4
print(BigInt.from(10).gcd(BigInt.from(12))); // 2
print(BigInt.from(10).gcd(BigInt.from(10))); // 10
print(BigInt.from(-2).gcd(BigInt.from(-3))); // 1

实现

BigInt gcd(BigInt other);