new inputs

This commit is contained in:
Jacob Delgado 2023-08-21 22:15:44 -07:00
parent ef15f4d7e2
commit 790be3a565

View File

@ -8,3 +8,12 @@ def isValidSudoku(board):
for x in board:
print(isValidSudoku([["5","3",".",".","7",".",".",".","."]
,["6",".",".","1","9","5",".",".","."]
,[".","9","8",".",".",".",".","6","."]
,["8",".",".",".","6",".",".",".","3"]
,["4",".",".","8",".","3",".",".","1"]
,["7",".",".",".","2",".",".",".","6"]
,[".","6",".",".",".",".","2","8","."]
,[".",".",".","4","1","9",".",".","5"]
,[".",".",".",".","8",".",".","7","9"]]))