1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use crate::util::other::nz;

/// Greatest common divisor of a, b > 0.
///
/// # Examples
///
/// ```rust
/// use lib::math::gcd::gcd;
/// assert_eq!(gcd(9, 12), 3);
/// ```
#[inline]
pub fn gcd(mut a: usize, mut b: usize) -> usize {
    while nz(b) {
        let c = b;
        b = a % b;
        a = c;
    }
    a
}

/// Least common multiple of a, b > 0.
///
/// # Examples
///
/// ```rust
/// use lib::math::gcd::lcm;
/// assert_eq!(lcm(9, 12), 36);
/// ```
#[inline]
pub fn lcm(a: usize, b: usize) -> usize {
    a / gcd(a, b) * b
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_gcd() {
        assert_eq!(gcd(9, 12), 3);
        assert_eq!(gcd(12, 9), 3);
        assert_eq!(gcd(1, 9), 1);
    }

    #[test]
    fn test_lcm() {
        assert_eq!(lcm(9, 12), 36);
        assert_eq!(lcm(12, 9), 36);
        assert_eq!(lcm(1, 9), 9);
    }
}