leetcode/0037.Sudoku-Solver/README.md
Write a program to solve a Sudoku puzzle by filling the empty cells.
A sudoku solution must satisfy all of the following rules:
1-9 must occur exactly once in each row.1-9 must occur exactly once in each column.1-9 must occur exactly once in each of the 9 3x3 sub-boxes of the grid.Empty cells are indicated by the character '.'.
A sudoku puzzle...
...and its solution numbers marked in red.
Note:
1-9 and the character '.'.9x9.编写一个程序,通过已填充的空格来解决数独问题。一个数独的解法需遵循如下规则:
空白格用 '.' 表示。
1-9 的数字不能重复,每次放下一个数字的时候,在这 3 个地方都需要判断一次。