Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/aaroncoplan/sudoku-solver
- Owner: AaronCoplan
- License: mit
- Created: 2016-09-19T04:27:06.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-21T20:07:57.000Z (over 7 years ago)
- Last Synced: 2024-11-09T12:36:27.054Z (3 months ago)
- Language: C
- Homepage:
- Size: 63.5 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!