Xiretza
92aba2db95
This avoids an allocation and, more importantly, turns `digits` into a fixed size array, allowing the final calculations to be unrolled completely.
16 lines
282 B
TOML
16 lines
282 B
TOML
[package]
|
|
name = "day8_rs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
arrayvec = "0.7.2"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3.5"
|
|
|
|
[[bench]]
|
|
name = "unscramble"
|
|
harness = false
|