Mohammed Amar-Bensaber
140e75cf71
This representation allows defining a grid of cells that are marked either as filled or empty. This usually represents the solution that the player has to achieve. The transpose function is a bit overkill but does the work for now. Future optimization might be necessary. Most nonogram puzzles are small, maybe they can live on the stack instead of dynamically allocating [`Vec`]? Maybe use `smallvec`?
8 lines
160 B
TOML
8 lines
160 B
TOML
[package]
|
|
name = "nonoka"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Mohammed Amar-Bensaber <renken@shione.net>"]
|
|
license = "AGPL-3.0-only"
|
|
|
|
[dependencies]
|