pocomath/src/generic/lcm.mjs

7 lines
131 B
JavaScript

export const lcm = {
'any,any': ({
multiply,
quotient,
gcd}) => (a,b) => multiply(quotient(a, gcd(a,b)), b)
}