Update check_sudoku_board.py

This commit is contained in:
bt3gl 2023-07-30 17:33:00 -07:00 committed by GitHub
parent d982849688
commit 2e37835477
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ Input: board =
Output: true Output: true
``` ```
def isValidSudoku(self, board: List[List[str]]) -> bool: def is_valid_sudoku(board) -> bool:
N = 9 N = 9