https://github.com/abhishekshree/sudoku
Created an application to solve sudoku using backtracking
https://github.com/abhishekshree/sudoku
backtracking-algorithm sudoku
Last synced: 3 months ago
JSON representation
Created an application to solve sudoku using backtracking
- Host: GitHub
- URL: https://github.com/abhishekshree/sudoku
- Owner: abhishekshree
- Created: 2021-01-31T10:32:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-02T09:13:37.000Z (over 5 years ago)
- Last Synced: 2025-10-10T06:04:20.015Z (8 months ago)
- Topics: backtracking-algorithm, sudoku
- Language: HTML
- Homepage: https://solve-sudoku-fast.herokuapp.com/
- Size: 11.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sudoku Solver
Created an application to solve sudoku using backtracking.
This app is currently [hosted here](https://solve-sudoku-fast.herokuapp.com/)
To run it locally:
- Install the requirements by the command
pip install -r requirements.txt -
Run the main function in app.py by the command
python app.py
Note: I am currently working on a way to verify whether the given sudoku is valid to be solved or not.