Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Opps, the awful 16th line (
for (let i = 0; i < 100; i++) {
) should be replaced with this:for (let i = 0; i < boardSize * boardSize && 0 < sudokuZeroCellCounter(board, boardSize); i++) {
I did not mean to leave it like that :)
(and sorry about the many variable about dimensions, half of the code if prepared to be used on sudoku boards larger/smaller than 9x9)