Pinned Loading
-
-
-
-
gcd-lcm.js
gcd-lcm.js 1const lcm_fn = (x,y) => (x*y)/gcd_fn(x,y); // the least common multiple
2const gcd_fn = (x,y) => (y<=0)? x : gcd_fn(y,x%y); // the greatest common divisor
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.