https://github.com/robertobatts/sudoku-solver
https://github.com/robertobatts/sudoku-solver
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/robertobatts/sudoku-solver
- Owner: robertobatts
- Created: 2019-09-19T16:27:18.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-19T18:27:01.000Z (almost 7 years ago)
- Last Synced: 2023-03-06T21:22:15.694Z (over 3 years ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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