https://github.com/magicant/sudoku-solver-in-d
A simple sudoku solver written in D
https://github.com/magicant/sudoku-solver-in-d
Last synced: 5 months ago
JSON representation
A simple sudoku solver written in D
- Host: GitHub
- URL: https://github.com/magicant/sudoku-solver-in-d
- Owner: magicant
- Created: 2014-10-08T15:04:17.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-10-12T14:09:32.000Z (over 11 years ago)
- Last Synced: 2023-03-16T04:55:15.565Z (about 3 years ago)
- Language: D
- Size: 176 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
sudoku-solver-in-d
==================
A simple sudoku solver written in D
Usage:
```
$ dub build
Building sudoku ~master configuration "application", build type debug.
Compiling using dmd...
Linking...
$ cat sample.txt
1 0 0 4 0 0 7 0 9
0 5 0 7 8 0 0 2 0
7 0 9 0 2 3 0 0 6
3 0 0 6 0 0 0 0 0
6 4 0 0 7 0 0 1 2
9 0 8 0 0 2 0 4 5
2 3 0 5 0 4 8 0 0
0 6 0 0 9 0 0 3 0
8 0 7 0 0 1 0 6 4
$ ./sudoku