Determine if a 9x9 Sudoku board is valid. Only the filled cells need to be validated according to the following rules:
- Each row must contain the digits 1-9 without repetition.
- Each column must contain the digits 1-9 without repetition.
- Each of the 9 3x3 sub-boxes of the grid must contain the digits 1-9 without repetition.
The Sudoku board could be partially filled, where empty cells are filled with the character '.'.
判斷一個9x9的數獨是否符合規則。有被填入數字的格子必須遵守以下規則:
- 每一排都包含1-9的數字,且不能重複。
- 每一列都包含1-9的數字,且不能重複。
- 每一個3x3的小格子都都包含1-9的數字,且不能重複。
數獨板只有部分會被填入,空的格子會用字元'.'表示。
3*3
的小格子要怎麼寫index。LeetCode
C++