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

https://github.com/robertobatts/sudoku-solver


https://github.com/robertobatts/sudoku-solver

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

# sudoku-solver

A simple sudoku solver that works with a recursive algorithm.

## Run

Insert the sudoku as 2D array into [sudoku-solver-exercise_test.go](https://github.com/robertobatts/sudoku-solver/blob/master/sudoku-solver-exercise_test.go) (there are already two sudokus defined in the variables easySudoku and hardSudoku).
Then type

```go
go test
```

into the terminal