From ef15f4d7e259eac6f16872d731a528af7dd6dd1d Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Sun, 20 Aug 2023 20:22:35 -0700 Subject: [PATCH] first attempt with hashmap fo sudoku --- NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py b/NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py index 3229f05..1c47aa5 100644 --- a/NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py +++ b/NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py @@ -1,7 +1,10 @@ -def isValidSudoku(self, board): +def isValidSudoku(board): """ :type board: List[List[str]] :rtype: bool """ + x = [] + y = [] + for x in board: + - \ No newline at end of file