From 2e3783547714302710d45b9dec57e21f9c0f48f1 Mon Sep 17 00:00:00 2001 From: bt3gl <138340846+bt3gl-google@users.noreply.github.com> Date: Sun, 30 Jul 2023 17:33:00 -0700 Subject: [PATCH] Update check_sudoku_board.py --- math_logic_dp/check_sudoku_board.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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