first attempt with hashmap fo sudoku

This commit is contained in:
Jacob Delgado 2023-08-20 20:22:35 -07:00
parent ed861eb628
commit ef15f4d7e2

View File

@ -1,7 +1,10 @@
def isValidSudoku(self, board): def isValidSudoku(board):
""" """
:type board: List[List[str]] :type board: List[List[str]]
:rtype: bool :rtype: bool
""" """
x = []
y = []
for x in board: