Closed vJechsmayr closed 4 years ago
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
3x3
Empty cells are indicated by the character '.'.
'.'
Note:
9x9
class Solution: def solveSudoku(self, board: List[List[str]]) -> None: """ Do not return anything, modify board in-place instead. """
LeetCode
I would like to work on this issue.
Description of the Problem
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 93x3
sub-boxes of the grid.Empty cells are indicated by the character
'.'
.Note:
1-9
and the character'.'
.9x9
.Code
Link To The LeetCode Problem
LeetCode