We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3baf88c commit da0f97aCopy full SHA for da0f97a
src/algorithms/sets/power-set/bwPowerSet.js
@@ -4,7 +4,7 @@
4
* @param {*[]} originalSet
5
* @return {*[][]}
6
*/
7
-export default function powerSet(originalSet) {
+export default function bwPowerSet(originalSet) {
8
const subSets = [];
9
10
// We will have 2^n possible combinations (where n is a length of original set).
0 commit comments