An open API service indexing awesome lists of open source software.

https://github.com/prabaprakash/sudoku-solver

Solve the Sudoku Puzzle within 30 seconds by Constraint Propagation and Search
https://github.com/prabaprakash/sudoku-solver

backtracking constraint-propagation python sudoku sudoku-puzzle sudoku-solver

Last synced: 4 months ago
JSON representation

Solve the Sudoku Puzzle within 30 seconds by Constraint Propagation and Search

Awesome Lists containing this project

README

        

# Sudoku Sovler
solve the sudoku puzzle within 30 seconds
# Sudoku Generator
1. Run Flask Web App
```
$ FLASK_APP=server.py flask run
```

2. To Generate Sudoku
```
http://localhost:5000
{
"puzzle": ".8..7.1....6....8.....8..5...8..3......4.19............2.....47....4....1........",
"token": "GFVE6A1538296953.91"
}
```

# Sudoku Solver

```
# python solver.py
```