From 4160361b6cb37699f6680cfb437e4902b08bb86d Mon Sep 17 00:00:00 2001 From: flying-scorpio Date: Tue, 3 Dec 2019 21:28:37 +0100 Subject: [PATCH] Change function documentation --- board.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/board.py b/board.py index 32835ea..cf78ad2 100644 --- a/board.py +++ b/board.py @@ -341,9 +341,9 @@ class Board: the number is in the square's values but not in the values of the rest of the squares in the line then the square should take that number. - Go through each column. For each square, go through numbers 1 to 9. If - the number is in the square's values but not in the values of the rest - of the squares in the column then the square should take that number. + Do the same for each column. + + Do the same for each grid. This method should be run after compute_possible_values to update each square's values.