leo/examples/silly-sudoku
2021-04-29 15:22:17 -04:00
..
inputs removed test_input from silly sudoku 2021-04-26 22:26:46 +03:00
src hacky, but optional comma only allowed on last member variable 2021-04-29 15:22:17 -04:00
.gitignore add silly-sudoku example 2021-03-29 22:12:06 -07:00
Leo.toml add silly-sudoku example 2021-03-29 22:12:06 -07:00
README.md add silly-sudoku example 2021-03-29 22:12:06 -07:00

silly-sudoku

A simple Sudoku puzzle grid in Leo.

Walkthrough

Start by defining a puzzle grid:

[[0, 4, 6],
 [3, 0, 9],
 [7, 5, 0]]

We treat all 0's as empty cells in the grid.

Next, generate an answer and construct it as a puzzle grid solution:

[[8, 4, 6],
 [3, 1, 9],
 [7, 5, 2]]

The SillySudoku circuit will proceed to verify that the solution grid matches the starting puzzle grid, and check that each number between 1 - 9 is used exactly once.