mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-05 16:26:47 +08:00
Remove live code & console.log (Backtracking, Bit-manipulation, Ciphers).
This commit is contained in:
@ -36,7 +36,6 @@ class NQueen {
|
||||
|
||||
solve (col = 0) {
|
||||
if (col >= this.size) {
|
||||
this.printBoard()
|
||||
this.solutionCount++
|
||||
return true
|
||||
}
|
||||
|
Reference in New Issue
Block a user