Python script to solve a Sudoku.
Get into the project folder:
cd PySudokuSolver
Create a new environment:
virtualenv --python="/usr/local/bin/python3" env
Get into that environment:
source env/bin/activate
Install the librairies:
pip install -r requirements.txt
Run:
python3 app/src/main.py
This will display a prompt where you can choose which difficulty of Sudoku you want to solve. The result will be displayed in the console. A log file detailing every step can be found in app/files/log.txt
.
Note : The difficulties "hard" and "extreme" aren't always completed.
- Python 3.8.10
- Ubuntu 20.04.5
app/
env/
.gitignore
README.md
- Rework the random steps to make sure hard and extreme are always completed.
- Make it executable with command line
- Add parameters
- Add interface