Travis build: 1087

This commit is contained in:
30secondsofcode
2018-01-08 20:32:16 +00:00
parent 3122ebc51a
commit e415d40e98
2 changed files with 2 additions and 2 deletions

View File

@ -3178,7 +3178,7 @@ isPrime(11); // true
Returns the least common multiple of two or more numbers.
Use the greatest common divisor (GCD) formula and `Math.abs()` 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