Skip to content

Commit da0f97a

Browse files
committedDec 11, 2018
Fix PowerSet function naming.
1 parent 3baf88c commit da0f97a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/algorithms/sets/power-set/bwPowerSet.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @param {*[]} originalSet
55
* @return {*[][]}
66
*/
7-
export default function powerSet(originalSet) {
7+
export default function bwPowerSet(originalSet) {
88
const subSets = [];
99

1010
// We will have 2^n possible combinations (where n is a length of original set).

0 commit comments

Comments
 (0)
Please sign in to comment.