https://github.com/xiaoxiae/proloku
A simple sudoku solver written in Prolog.
https://github.com/xiaoxiae/proloku
Last synced: 5 months ago
JSON representation
A simple sudoku solver written in Prolog.
- Host: GitHub
- URL: https://github.com/xiaoxiae/proloku
- Owner: xiaoxiae
- Created: 2021-05-22T13:02:16.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-22T18:12:24.000Z (about 5 years ago)
- Last Synced: 2025-02-21T07:09:33.874Z (over 1 year ago)
- Language: Prolog
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Proloku
A **prolo**g sudo**ku** solver.
## Running the solver
To build the solver, use
```
swipl -o solve -g main -c solve.pl
```
After this, pipe your sudokus (in the same format as `sudoku.txt`) to the executable and it will output them solved:
```
cat sudoku.txt | ./solve
```