0037. Sudoku Solver
https://leetcode.com/problems/sudoku-solver
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-9must occur exactly once in each row.Each of the digits
1-9must occur exactly once in each column.Each of the digits
1-9must occur exactly once in each of the 93x3sub-boxes of the grid.
The '.' character indicates empty cells.
Example 1:
Constraints:
board.length == 9board[i].length == 9board[i][j]is a digit or'.'.It is guaranteed that the input board has only one solution.
ac
Last updated
Was this helpful?