A Python program to solve Sudoku puzzles using backtracking algorithm.
- Solves Sudoku puzzles of any difficulty level.
- Utilizes backtracking algorithm for efficient solving.
- Handles edge cases and invalid inputs gracefully.
These instructions will guide you through setting up the project and running the Sudoku solver on your local machine.
- Python 3.x
-
Clone the repository:
git clone https://github.com/Hasnainbro/sudoku-solver.git
-
Navigate to the project directory:
cd sudoku-solver
-
Open the
sudoku_solver.py
file in a text editor or IDE. -
Modify the
grid
variable to input your Sudoku puzzle. -
Run the Python script:
python sudoku_solver.py
-
The solved Sudoku puzzle will be displayed in the console.
- Python - Programming language used.
- Backtracking Algorithm - Used for solving Sudoku puzzles.
- Hasnainkh - Developer
This project is unlicensed and is free to use by anyone for any purpose.