Files
aoc2016/day11/Cargo.lock
T
timeshifter bd36a0af12 add day 11
Claude guided me through this extensively, but I wrote all this on my
own in the end. Uses breadth first search (BFS). This is slow, but it
produces the correct answer.
2026-07-01 16:07:52 +02:00

26 lines
597 B
TOML

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "day11"
version = "0.1.0"
dependencies = [
"itertools",
]
[[package]]
name = "either"
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
[[package]]
name = "itertools"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
dependencies = [
"either",
]