https://github.com/nikithasheerka/quicksolve-sudoku
An application designed to solve any valid sudoku puzzle configuration.
https://github.com/nikithasheerka/quicksolve-sudoku
css flask html javascript python
Last synced: 3 months ago
JSON representation
An application designed to solve any valid sudoku puzzle configuration.
- Host: GitHub
- URL: https://github.com/nikithasheerka/quicksolve-sudoku
- Owner: NikithaSheerka
- Created: 2024-10-29T02:04:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-29T02:43:20.000Z (over 1 year ago)
- Last Synced: 2025-03-23T22:48:50.102Z (over 1 year ago)
- Topics: css, flask, html, javascript, python
- Language: HTML
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# QuickSolve Sudoku
Ever solved a sudoku puzzle. It's tricky right? Don't worry! With this app you can get any valid sudoku puzzle solved within seconds. Just enter the sudoku config and hit submit.
**Live Preview** : https://sudoku-solving-application.herokuapp.com/
## Project Structure
```bash
├── static
│ ├── script.js
│ ├── styles.css
├── templates
│ ├── index.html
├── Main.py
├── server.py
├── .gitignore
├── README.md
```
## Technologies used
[
](#)
[
](#)
[
](#)
[
](#)
[
](#)
## Running the app locally
You will require the following python modules if you wish to run this app
- click==7.1.2
- Flask==1.1.2
- gunicorn==20.1.0
- itsdangerous==1.1.0
- Jinja2==2.11.3
- MarkupSafe==1.1.1
- Werkzeug==1.0.1
To run the app, set uo a virtual environment, and install the modules mentioned in the requirements.txt using the following command:-
```
pip install -r requirements.txt
```
Once the modules are installed, simply run the command for windows :-
```
python server.py
```
For mac and linux run the following command :-
```
python3 server.py
```
Once the server is up-and-running, go to your browser, and visit http://localhost:3000 to use the app.