https://github.com/okelleydevelopment/sudokusolver
Reinforcing Backtracking with the program being completed in C
https://github.com/okelleydevelopment/sudokusolver
Last synced: 2 months ago
JSON representation
Reinforcing Backtracking with the program being completed in C
- Host: GitHub
- URL: https://github.com/okelleydevelopment/sudokusolver
- Owner: OkelleyDevelopment
- Created: 2020-06-24T02:39:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-15T07:06:08.000Z (almost 6 years ago)
- Last Synced: 2025-01-16T23:06:53.083Z (over 1 year ago)
- Language: C
- Size: 93.8 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. Compile by running the command
```
gcc sudoku.c -o Sudoku
```
3. Run the program by typing this command
```
./Sudoku
```
## Known errors
At the time of pushing these readme changes, the program
functions as exepected.