gcd method

  1. @override
int gcd(
  1. int a,
  2. int b
)
override

Computes the greatest common divisor: gcd(a, b).

Implementation

@override
int gcd(int a, int b) => a.gcd(b);