7 lines
103 B
Python
7 lines
103 B
Python
def isValidSudoku(self, board):
|
|
"""
|
|
:type board: List[List[str]]
|
|
:rtype: bool
|
|
"""
|
|
|
|
|