Formatting changes

This commit is contained in:
Angelos Chalaris
2018-09-27 22:47:46 +03:00
parent b44b539b40
commit e97fdf2682
14 changed files with 22 additions and 15 deletions

View File

@ -9,5 +9,5 @@ const powerset = arr => arr.reduce((a, v) => a.concat(a.map(r => [v].concat(r)))
```
```js
powerset([1, 2]); // [[], [1], [2], [2,1]]
powerset([1, 2]); // [[], [1], [2], [2, 1]]
```