diff --git a/math_logic_dp/check_sudoku_board.py b/math_logic_dp/check_sudoku_board.py index 537c1ba..d162cc2 100644 --- a/math_logic_dp/check_sudoku_board.py +++ b/math_logic_dp/check_sudoku_board.py @@ -23,7 +23,7 @@ Input: board = Output: true ``` -def isValidSudoku(self, board: List[List[str]]) -> bool: +def is_valid_sudoku(board) -> bool: N = 9