pub fn gcd(a: usize, b: usize) -> usize
Greatest common divisor of a, b > 0.
use lib::math::gcd::gcd; assert_eq!(gcd(9, 12), 3);