Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.05 KB

README.md

File metadata and controls

34 lines (28 loc) · 1.05 KB

Sudoku solver

This program can solve any 9x9 sudoku using different algorithms that you can choose

Installation

Feel free to download the repo and use it. Use the package manager pip3 and venv to install all the requirements that the proyect needs.

cd sudoku-solver
python3 -m venv ./venv
source venv/bin/activate
pip3 install -r requirements.txt

Usage

You can load your sudoku at the file called sudoku.py, there you can modify the sudoku, algorith and visualization type. The actual algorithms for solving are: naive or "brute force", backtracking (recomended)

cd sudoku-solver
python3 run.py

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Changelog

  • Initial repo

Fixings