Valid Sudoku Initialization

This commit is contained in:
Jacob Delgado 2023-08-19 22:55:57 -07:00
parent ade978c89c
commit ed861eb628

View File

@ -0,0 +1,7 @@
def isValidSudoku(self, board):
"""
:type board: List[List[str]]
:rtype: bool
"""