Added third dimension to check valid box

This commit is contained in:
Jacob Delgado 2023-09-15 20:39:20 -07:00
parent fe29a16ec3
commit 580f34ebc8

View File

@ -10,6 +10,7 @@ def isValidSudoku(board):
temp.append(board[x]) temp.append(board[x])
else: else:
return False return False
temp = temp /3*3
return True return True