Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
mend
  • Loading branch information
Dishant-Tyagi committed Apr 29, 2024
commit b08c376cd252c93a734a50b620894f41acfdd3f6
10 changes: 5 additions & 5 deletions GAMES/sudoku_solver/readme.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
##Sudoku Solver GUI
## Sudoku Solver GUI

##Overview
# Overview
This is a simple Sudoku Solver implemented in Python with a graphical user interface (GUI) using the Tkinter library. The Sudoku Solver allows you to input a Sudoku puzzle and then solves it using a backtracking algorithm. You can visualize the solution step by step on the GUI.

##Features
# Features
Interactive GUI: The Sudoku Solver features a user-friendly interface built with Tkinter, allowing you to input Sudoku puzzles and visualize the solution.
Backtracking Algorithm: The Sudoku Solver uses a backtracking algorithm to find the solution to the input puzzle.
Step-by-Step Solution: You can click the "Solve" button to start solving the Sudoku puzzle step by step, and observe how the solver fills in the cells.

##How to Run
# How to Run
Make sure you have Python installed on your system.
Clone this repository or download the sudoku_solver.py file.
Open a terminal or command prompt and navigate to the directory containing sudoku_solver.py.
Run the command python sudoku_solver.py.
The Sudoku Solver GUI window will open, allowing you to input Sudoku puzzles and visualize the solution.

##How to Use
# How to Use
When the Sudoku Solver GUI window opens, you'll see a 9x9 grid representing the Sudoku puzzle.
enter value row by row in terminal ,empty space is denote by '0'.
After entering the puzzle, click the "Solve" button to start solving the Sudoku puzzle.
Expand Down