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

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.

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
```