the board.js file's object contains a method, getBoard(), which has code (currently commented out in favor of an undesirable hardcoded workaround) that should create a randomly generated sudoku board for the algorithms to solve, but the boards are often impossible to solve. this is because numbers are repeated within the same row/column/box, which goes against the rules of sudoku.
the board.js file's object contains a method,
getBoard()
, which has code (currently commented out in favor of an undesirable hardcoded workaround) that should create a randomly generated sudoku board for the algorithms to solve, but the boards are often impossible to solve. this is because numbers are repeated within the same row/column/box, which goes against the rules of sudoku.