From ed861eb628dc079f82f478c943910850a458e7fe Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Sat, 19 Aug 2023 22:55:57 -0700 Subject: [PATCH] Valid Sudoku Initialization --- NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py diff --git a/NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py b/NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py new file mode 100644 index 0000000..3229f05 --- /dev/null +++ b/NeetCodeRoadmap/Arrays_and_Hashing/36_Valid_Sudoku.py @@ -0,0 +1,7 @@ +def isValidSudoku(self, board): + """ + :type board: List[List[str]] + :rtype: bool + """ + + \ No newline at end of file