Files
30-seconds-of-code/snippets/powerset.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

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 with Array.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]]