Sudoku Solver (backtracking demo)   contact

Puzzle:
        Samples:

Calculation in progress...

Step: {{(step+1).toLocaleString('en-US')}} / {{stepMax.toLocaleString('en-US')}}
Recursion depth: {{board[1]}}

{{ board[0][(yy * 3 + y) * 9 + xx * 3 + x] == '0' ? '' : board[0][(yy * 3 + y) * 9 + xx * 3 + x] }}



Algorithm: