https://github.com/crozone/sudokusolver
A basic, slightly optimised brute force Sudoku solver.
https://github.com/crozone/sudokusolver
Last synced: 12 months ago
JSON representation
A basic, slightly optimised brute force Sudoku solver.
- Host: GitHub
- URL: https://github.com/crozone/sudokusolver
- Owner: crozone
- License: mit
- Created: 2016-09-07T06:00:19.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-07T06:28:47.000Z (almost 10 years ago)
- Last Synced: 2025-06-06T15:52:31.798Z (about 1 year ago)
- Language: C
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SudokuSolver
A basic, slightly optimised brute force Sudoku solver.
## Building:
I'm yet to make a proper makefile, but for the meantime the code can be compiled simply with
`gcc --ansi -Wall -O3 main.c -o sudoku.o`
## Running
Either run the application with `./sudoku.o` and type in the game board, or pipe in a board and pipe out the output, eg:
`cat hard.txt | ./sudoku.o > hard.output.txt`