first attempt with hashmap fo sudoku
This commit is contained in:
parent
ed861eb628
commit
ef15f4d7e2
@ -1,7 +1,10 @@
|
||||
def isValidSudoku(self, board):
|
||||
def isValidSudoku(board):
|
||||
"""
|
||||
:type board: List[List[str]]
|
||||
:rtype: bool
|
||||
"""
|
||||
x = []
|
||||
y = []
|
||||
for x in board:
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user