Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Given an input file, this program will solve a Sudoku puzzle at a ridiculously fast rate.
https://github.com/aaroncoplan/sudoku-solver

Last synced: 21 days ago
JSON representation

Given an input file, this program will solve a Sudoku puzzle at a ridiculously fast rate.

Awesome Lists containing this project

README

        

# sudoku-solver

Given an input file, this program will solve a Sudoku puzzle at a ridiculously fast rate. I have included several sample sudokus of varying difficulty and varying validity in the `input/` directory, which allows for easy testing of the program's sudoku solving and input validation capabilities.

This project is licensed under the MIT license.

# How to Build and Run

1. Clone the repository: `git clone https://github.com/AaronCoplan/sudoku-solver` or `[email protected]:AaronCoplan/sudoku-solver.git`
2. Change directory into the repository (`cd sudoku-solver`)
3. Build the project: `make`
4. Run the program: `./build `

You will see the solved sudoku printed to your console! Enjoy!