Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/galkahana/rust-sudoku-quick-solver
A CLI for solving Sudoku puzzles written in rust
https://github.com/galkahana/rust-sudoku-quick-solver
Last synced: 23 days ago
JSON representation
A CLI for solving Sudoku puzzles written in rust
- Host: GitHub
- URL: https://github.com/galkahana/rust-sudoku-quick-solver
- Owner: galkahana
- License: apache-2.0
- Created: 2024-04-29T18:35:28.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-07-02T20:46:29.000Z (6 months ago)
- Last Synced: 2024-12-03T00:08:23.863Z (25 days ago)
- Language: Rust
- Size: 50.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
CLI for resolving sudoku puzzles.
Excercise for studying rust.
Look at [samples](/samples/) to review i/o format for puzzles. Can do both stdi/o and files.Binaries available with releasez.
```
Sudoku Puzzle solver.
Input is a board formatted in the following manner:
Each cell is designated by a digit:
- 1-9 for assigned value
- 0 for empty value
separators between digits are not required, though
you can separate lines with newlines.Usage: rust-sudoku-quick-solver.exe [OPTIONS]
Options:
-i, --input-file input file path (defaults to stdin)
-o, --output-file output file path (defaults to stdout)
-h, --help Print help
-V, --version Print version
```