pub fn gcd(a: u64, b: u64) -> u64
Finds the GCD of a and b.
a
b
Examples:
assert_eq!(akshually::math::gcd(48, 36), 12);