We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71c971b commit 7989e6fCopy full SHA for 7989e6f
15. 有效的数独.md
@@ -2,8 +2,9 @@
2
3
数字 1-9 在每一行只能出现一次。
4
数字 1-9 在每一列只能出现一次。
5
-数字 1-9 在每一个以粗实线分隔的 3x3 宫内只能出现一次。```
6
-
+数字 1-9 在每一个以粗实线分隔的 3x3 宫内只能出现一次。
+```
7
8
class Solution:
9
def isValidSudoku(self, board: List[List[str]]) -> bool:
10
#整个board有9行,第二维的维数10是为了让下标有9,和数独中的数字9对应。
0 commit comments