mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2025-01-06 08:40:02 +08:00
.. | ||
__test__ | ||
powerSet.js | ||
README.md |
Power Set
Power set of a set A is the set of all of the subsets of A.
Eg. for {x, y, z}
, the subsets are : {{}, {x}, {y}, {z}, {x, y}, {x, z}, {y, z}, {x, y, z}}