From 3215e25e1210e81b2c5c6f5024c9fafd39139aeb Mon Sep 17 00:00:00 2001 From: marina <138340846+bt3gl-cryptographer@users.noreply.github.com> Date: Mon, 7 Aug 2023 17:05:29 -0700 Subject: [PATCH] Update check_sudoku_board.py --- math/check_sudoku_board.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/math/check_sudoku_board.py b/math/check_sudoku_board.py index d162cc2..1751ddd 100644 --- a/math/check_sudoku_board.py +++ b/math/check_sudoku_board.py @@ -3,7 +3,7 @@ # author: bt3gl -``` +''' Determine if a 9 x 9 Sudoku board is valid. Only the filled cells need to be validated according to the following rules: - Each row must contain the digits 1-9 without repetition. @@ -21,7 +21,7 @@ Input: board = ,[".",".",".","4","1","9",".",".","5"] ,[".",".",".",".","8",".",".","7","9"]] Output: true -``` +''' def is_valid_sudoku(board) -> bool: