From 6351bd05ec559d4c6ba743b2d5e4b98e11fd66b4 Mon Sep 17 00:00:00 2001 From: hakansaglam29 <67585490+hakansaglam29@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:27:38 +0100 Subject: [PATCH] Update 034_sudoku_solver.py --- 034_sudoku_solver.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/034_sudoku_solver.py b/034_sudoku_solver.py index e2e419a..5d9d67b 100644 --- a/034_sudoku_solver.py +++ b/034_sudoku_solver.py @@ -1,4 +1,6 @@ -Write a function that will solve a 9x9 Sudoku puzzle. The function will take one argument consisting of the 2D puzzle array, with the value 0 representing an unknown square. +Write a function that will solve a 9x9 Sudoku puzzle. +The function will take one argument consisting of the 2D puzzle array, +with the value 0 representing an unknown square. @@ -56,4 +58,4 @@ def fix(board): [0,0,0,4,1,9,0,0,5], [0,0,0,0,8,0,0,7,9]] -print(sudoku(puzzle)) \ No newline at end of file +print(sudoku(puzzle))