https://github.com/okelleydevelopment/sudoku-solver
My attempt at creating a sudoku solver using the Backtracking algorithm
https://github.com/okelleydevelopment/sudoku-solver
Last synced: 8 months ago
JSON representation
My attempt at creating a sudoku solver using the Backtracking algorithm
- Host: GitHub
- URL: https://github.com/okelleydevelopment/sudoku-solver
- Owner: OkelleyDevelopment
- Created: 2020-06-21T03:56:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-01T05:46:08.000Z (almost 6 years ago)
- Last Synced: 2025-03-06T12:51:57.126Z (over 1 year ago)
- Language: Python
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sudoku Solver
## Motivation
To build a program that can attempt to solve any sudoku board specified by the
user using a backtracking algorithm and then write the output to a specified
file.
This is an implementation of my original python project and has helped
strengthen my C programming skills as well as further reinforcing the process
of setting up a backtracking algorithm.
##Program Execution
1. Clone this repo by running this command in the terminal
```
git clone https://github.com/OkelleyDevelopment/SudokuSolver.git
```
2. Run the program using this command
```
python3 sudoku.py
```
3. The program will then prompt the user for an input board.
## Known errors
At the time of pushing these readme changes, the program functions as exepected.