RosettaCodeData/Task/Least-common-multiple/K/least-common-multiple-2.k

9 lines
131 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
abs:|/-:\
gcd:{$[~x;y;o[x!y;x]]}
lcm:{abs[`i$x*y%gcd[x;y]]}
lcm .'(12 18; -6 14; 35 0)
36 42 0
lcm/1+!20
232792560