You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 0x17-Sudoku/SudokuGui/README.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,10 @@ The code uses a backtracking algorithm to solve the puzzle.
6
6
There are two ways to run the program.
7
7
8
8
* The first of which involves using the GUI. Begin by importing gui.py into your IDE of choice. Then run the program and a window will appear.
9
-
* Input your chosen Sudoku puzzle into the cells of the window. Leave any empty cells blank. Then simply click "solve" to complete the puzzle or "clear" to clear the puzzle.
9
+
* Input your chosen Sudoku puzzle into the cells of the window. Leave any empty cells blank. Then simply click `solve` to complete the puzzle or `clear` to clear the puzzle.
10
+
11
+
Alternatively, you can run the program without a GUI using the `solver.py` script. Simply import the script into your IDE of choice. Then fill out the 2D board vector at the top of the file.
10
12
11
-
Alternatively, you can run the program without a GUI using the solver.py script. Simply import the script into your IDE of choice. Then fill out the 2D board vector at the top of the file.
12
13
Fill in empty cells with a zero. After filling in the board vector, you can run the program. The output will be printed to the console.
13
14
## Screenshot
14
15

0 commit comments