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

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

Python program able to solve any sudoku grid
https://github.com/matthewdlr/sudoku-solver

Last synced: 9 months ago
JSON representation

Python program able to solve any sudoku grid

Awesome Lists containing this project

README

          

# Sudoku Solver

This project originate from a class assignment.
The objective was to develop an algorithm capable of solving any (solvable) Sudoku puzzle using the backtracking algorithm.

## Installation

An external dependency is needed to display results in a beautiful way. Of course, python & pip have to be installed.

```bash
pip install colorama
```

## Use

The `main.py` runs by default the hardest sudoku.
To solve your own sudoku, you will first need to import it in the `sudoku_grids.py` file.

The, you will needb to update the `main.py` to solve it.

## Screenshot

![Sudoku Demo](/sudoku-demo.png)