Consistent whitespace
This commit is contained in:
@ -5,7 +5,7 @@ tags: math,recursion,intermediate
|
||||
|
||||
Calculates the least common multiple of two or more numbers.
|
||||
|
||||
- Use the greatest common divisor (GCD) formula and the fact that `lcm(x,y) = x * y / gcd(x,y)` to determine the least common multiple.
|
||||
- Use the greatest common divisor (GCD) formula and the fact that `lcm(x, y) = x * y / gcd(x, y)` to determine the least common multiple.
|
||||
- The GCD formula uses recursion.
|
||||
|
||||
```js
|
||||
|
||||
Reference in New Issue
Block a user