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
- Host: GitHub
- URL: https://github.com/kevinschweikert/rust-sudoku-solver
- Owner: kevinschweikert
- Created: 2024-02-17T23:50:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-18T19:44:02.000Z (over 1 year ago)
- Last Synced: 2025-04-01T15:17:06.217Z (7 months ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```