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

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

Awesome Lists containing this project

README

          

# Sudoku Solver
![Program Function](./utils/main.png)
## 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.