[][src]Function rdcl_aoc_helpers::math::lcm

pub fn lcm<T>(a: T, b: T) -> T where
    T: Copy + Eq + Mul<T, Output = T> + Div<T, Output = T> + Rem<T, Output = T> + Default

Computes the least common multiple of a and b.