mirror of
https://github.com/trekhleb/javascript-algorithms.git
synced 2025-07-07 01:44:52 +08:00
Update READMEs.
This commit is contained in:
@ -3,3 +3,10 @@
|
|||||||
Power set of a set A is the set of all of the subsets of A.
|
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}}`
|
Eg. for `{x, y, z}`, the subsets are : `{{}, {x}, {y}, {z}, {x, y}, {x, z}, {y, z}, {x, y, z}}`
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## References
|
||||||
|
|
||||||
|
* [Wikipedia](https://en.wikipedia.org/wiki/Power_set)
|
||||||
|
* [Math is Fun](https://www.mathsisfun.com/sets/power-set.html)
|
||||||
|
Reference in New Issue
Block a user