From 790be3a565b04ce86938f82a4bade4210511cff1 Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Mon, 21 Aug 2023 22:15:44 -0700 Subject: [PATCH] new inputs --- NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py b/NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py index 1c47aa5..3251743 100644 --- a/NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py +++ b/NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py @@ -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"]])) \ No newline at end of file