7 lines
131 B
JavaScript
7 lines
131 B
JavaScript
|
export const lcm = {
|
||
|
'any,any': ({
|
||
|
multiply,
|
||
|
quotient,
|
||
|
gcd}) => (a,b) => multiply(quotient(a, gcd(a,b)), b)
|
||
|
}
|