490 B
490 B
title, tags, firstSeen, lastUpdated
| title | tags | firstSeen | lastUpdated |
|---|---|---|---|
| powerset | math,algorithm,beginner | 2017-12-07T14:41:33+02:00 | 2020-12-28T13:49:24+02:00 |
Returns the powerset of a given array of numbers.
- Use
Array.prototype.reduce()combined withArray.prototype.map()to iterate over elements and combine into an array containing all combinations.
const powerset = arr =>
arr.reduce((a, v) => a.concat(a.map(r => [v].concat(r))), [[]]);
powerset([1, 2]); // [[], [1], [2], [2, 1]]