| 1 | // Wikipedia: https://en.wikipedia.org/wiki/Knight%27s_tour |
| 2 | |
| 3 | class OpenKnightTour { |
| 4 | constructor(size) { |
| 5 | // Constructor to initialize the chessboard and size |
| 6 | this.board = new Array(size).fill(0).map(() => new Array(size).fill(0)) |
nothing calls this directly
no outgoing calls
no test coverage detected