diff options
author | amelia <[email protected]> | 2022-11-28 14:14:21 -0600 |
---|---|---|
committer | amelia <[email protected]> | 2022-11-28 14:14:21 -0600 |
commit | a6e4f0abe2f8eb48a0a9f790406d7d5b2c8b53f5 (patch) | |
tree | 2a385f3b4ea650f35976576563ce872c906e765e /example.sudoku | |
parent | 80c44143c6bdfe6bfa7c17280f29a590bd2428ff (diff) |
almost done
Diffstat (limited to 'example.sudoku')
-rw-r--r-- | example.sudoku | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/example.sudoku b/example.sudoku new file mode 100644 index 0000000..a3ac871 --- /dev/null +++ b/example.sudoku @@ -0,0 +1,17 @@ +0 0 8 3 0 0 0 0 0 +1 0 3 0 9 0 2 0 0 +0 2 9 0 0 0 0 3 0 +8 0 0 0 0 4 5 0 0 +0 9 0 1 0 8 0 0 0 +0 0 2 9 0 0 0 0 8 +0 1 4 0 0 0 3 2 0 +0 0 0 0 1 0 8 0 0 +0 0 0 0 0 3 0 1 0 + +; you can comment like this! +; anything after the initial 9x9 will be ignored +; spacing/linebreaks/non-integers are valid to put between numbers +; +; more indepth, for any line, the first 9 valid integers will be taken +; ie, a line of 000,9e3p0 0(00) will give the program an +; array equal to - {0,0,0, 9,3,0, 0,0,0} |