Skip to content

Commit 7989e6f

Browse files
committed
Update 15. 有效的数独.md
1 parent 71c971b commit 7989e6f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

15. 有效的数独.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
33
数字 1-9 在每一行只能出现一次。
44
数字 1-9 在每一列只能出现一次。
5-
数字 1-9 在每一个以粗实线分隔的 3x3 宫内只能出现一次。```
6-
5+
数字 1-9 在每一个以粗实线分隔的 3x3 宫内只能出现一次。
6+
```
7+
```
78
class Solution:
89
def isValidSudoku(self, board: List[List[str]]) -> bool:
910
#整个board有9行,第二维的维数10是为了让下标有9,和数独中的数字9对应。

0 commit comments

Comments
 (0)