https://github.com/danielholmes/sudoku-solver
Enter a 4 or 9 size Sudoku and be presented with solutions to it
https://github.com/danielholmes/sudoku-solver
game sudoku sudoku-puzzle sudoku-solver
Last synced: about 1 year ago
JSON representation
Enter a 4 or 9 size Sudoku and be presented with solutions to it
- Host: GitHub
- URL: https://github.com/danielholmes/sudoku-solver
- Owner: danielholmes
- License: mit
- Created: 2017-10-09T21:50:48.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-11T05:20:23.000Z (over 8 years ago)
- Last Synced: 2025-02-10T01:41:21.216Z (over 1 year ago)
- Topics: game, sudoku, sudoku-puzzle, sudoku-solver
- Language: Haskell
- Size: 53.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sudoku Solver
[](https://travis-ci.org/danielholmes/sudoku-solver)
## Development Dependencies
- [Stack](https://haskellstack.org) (tested with version 1.5.1)
## Setting up development
`stack setup`
## Running
```bash
stack build --pedantic
stack exec sudoku-solver-exe
```
Interactively:
```bash
stack build --pedantic
stack repl
```
## Tests
```bash
stack test --pedantic
```
## TODO:
- Display fixed vs entered in different colours
- Try with larger puzzles (16x16)
- look at all step functions for fold opportunities