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

https://github.com/kevinschweikert/rust-sudoku-solver

A little rust experiment to solve Sudoku puzzles
https://github.com/kevinschweikert/rust-sudoku-solver

Last synced: 7 months ago
JSON representation

A little rust experiment to solve Sudoku puzzles

Awesome Lists containing this project

README

          

# Rust Sudoku Solver

[Reference](https://gist.github.com/syphh/62e6140361feb2d7196f2cb050c987b3)

## Usage

```rust
cargo run ...4.6.35.6.......5.23...........41.3...9..7.49....82....2.9.....871.....7....3.2
```

Result:

```shell
9 1 7 4 8 6 2 3 5
8 6 3 9 2 5 1 4 7
5 4 2 3 7 1 6 9 8

7 8 6 5 3 2 4 1 9
3 2 1 8 9 4 5 7 6
4 9 5 1 6 7 8 2 3

6 3 4 2 5 9 7 8 1
2 5 8 7 1 3 9 6 4
1 7 9 6 4 8 3 5 2
```