docs: add extreme Sudoku example
Transcribe the extreme 9x9 Sudoku puzzle from the provided image into the plain-text example format accepted by the solver. This gives users another ready-made input for exercising sparse puzzles from the command line. Update the README example commands so the new file is visible alongside the existing hard puzzle. Test Plan: - cargo run -- sudoku-examples/extreme.sudoku Refs: none
This commit is contained in:
@@ -29,6 +29,7 @@ Example puzzles live in `sudoku-examples/`. For instance:
|
|||||||
|
|
||||||
```sh
|
```sh
|
||||||
cargo run -- sudoku-examples/hard.sudoku
|
cargo run -- sudoku-examples/hard.sudoku
|
||||||
|
cargo run -- sudoku-examples/extreme.sudoku
|
||||||
```
|
```
|
||||||
|
|
||||||
## Project Decomposition
|
## Project Decomposition
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
0 8 0 6 0 0 0 0 0
|
||||||
|
4 0 0 0 0 0 9 0 0
|
||||||
|
0 9 0 5 0 1 0 8 0
|
||||||
|
0 0 2 0 0 0 0 0 7
|
||||||
|
0 4 0 9 0 8 0 5 0
|
||||||
|
0 0 0 0 3 0 0 0 0
|
||||||
|
0 0 0 0 4 0 0 3 0
|
||||||
|
7 0 0 1 0 3 0 0 5
|
||||||
|
0 1 0 0 6 0 0 0 0
|
||||||
Reference in New Issue
Block a user