Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ntkot/sudokusolver
Just a brute-force sudoku solver
https://github.com/ntkot/sudokusolver
Last synced: about 1 month ago
JSON representation
Just a brute-force sudoku solver
- Host: GitHub
- URL: https://github.com/ntkot/sudokusolver
- Owner: NTkot
- Created: 2020-02-23T14:27:13.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-23T14:41:10.000Z (almost 5 years ago)
- Last Synced: 2024-07-11T19:38:33.184Z (5 months ago)
- Language: C++
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sudoku Solver
Description:
A handy sudoku solving programInstallation instructions:
1. mkdir build
2. cd build
3. cmake ..
4. make
5. ./sudokuHow to use:
Enter cell's info format is row,column,value without the commas.
E.g. if you want to put number 6 in (1,3) position then you type 136 and hit enter
When you are done putting all the values from the given sudoku, just type any (4+)-digit number e.g. 1369, 42017
The program will understand that the input is invalid and will proceed to print a pictographic view of the given sudoku
If there was a mistake in your typing and you want to move a value to another cell then type 'n' when asked if the sudoku entered is correct.