Problem Description
Write a program to solve a Sudoku puzzle by filling the empty cells. A sudoku solution must satisfy all of the following rules:
- Each of the digits 1-9 must occur exactly once in each row.
- Each of the digits 1-9 must occur exactly once in each column.
- Each of the digits 1-9 must occur exactly once in each of the 9 3x3 sub-boxes of the grid. The '.' character indicates empty cells.
Key Insights
- The Sudoku board consists of a fixed size (9x9) which allows for a systematic approach.
- Backtracking is an efficient way to explore possible solutions by trying each number in empty cells and reverting if a conflict arises.
- Constraints ensure that there is always a unique solution, simplifying the solution process.
Space and Time Complexity
Time Complexity: O(9^(n*n)) in the worst case, where n is the dimension of the board (n=9). Space Complexity: O(n^2) due to the recursion stack in the backtracking approach.
Solution
The solution employs a backtracking algorithm to fill in the empty cells of the Sudoku board. The algorithm checks each empty cell (denoted by '.') and tries inserting digits from 1 to 9. For each placement, it verifies if the digit is valid based on Sudoku rules. If a number leads to a solution, it proceeds; if not, it backtracks and tries the next number. This continues until the board is completely filled.