Remove live code & console.log (Backtracking, Bit-manipulation, Ciphers).

This commit is contained in:
Eric Lavault
2021-10-09 17:47:03 +02:00
parent 7f6a53ad4a
commit 5c4be7604d
8 changed files with 35 additions and 33 deletions

View File

@ -36,7 +36,6 @@ class NQueen {
solve (col = 0) {
if (col >= this.size) {
this.printBoard()
this.solutionCount++
return true
}