Sudoku Solver
Fill empty cells with constraint propagation + backtracking.
backtrackingrecursionsudokuUpdated 2025-09-01
Constraints
- Row, column, 3x3 box unique 1..9
Optimization
- Choose cell with least candidates (MRV)
Fill empty cells with constraint propagation + backtracking.