javascript-algorithms/src/algorithms/sets/power-set
2018-04-26 07:26:12 +03:00
..
__test__ Restructure folders. 2018-04-26 07:26:12 +03:00
powerSet.js Restructure folders. 2018-04-26 07:26:12 +03:00
README.md Restructure folders. 2018-04-26 07:26:12 +03:00

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}}

Power Set

References