Remove live code & console.log, leave examples as comments.

This commit is contained in:
Eric Lavault
2021-10-11 14:07:10 +02:00
parent 90356f340d
commit e18718b7d5
14 changed files with 64 additions and 59 deletions

View File

@ -22,7 +22,6 @@ const permutations = arr => {
const permute = (arr, low, high) => {
if (low === high) {
P.push([...arr])
// console.log(arr.join(' '))
return P
}
for (let i = low; i <= high; i++) {