11 lines
145 B
Python
11 lines
145 B
Python
def isValidSudoku(board):
|
|
"""
|
|
:type board: List[List[str]]
|
|
:rtype: bool
|
|
"""
|
|
x = []
|
|
y = []
|
|
for x in board:
|
|
|
|
|