Travis build: 1041

This commit is contained in:
30secondsofcode
2018-01-05 14:41:29 +00:00
parent 21b5cdfec6
commit a9246df780
6 changed files with 2431 additions and 2990 deletions

View File

@ -15,5 +15,5 @@ const gcd = (...arr) => {
```js
gcd(8, 36); // 4
gcd(...[12,8,32]); // 4
gcd(...[12, 8, 32]); // 4
```