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

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

Awesome Lists containing this project

README

          

# Sudoku Solver

[![Build Status](https://travis-ci.org/danielholmes/sudoku-solver.svg?branch=master)](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