Completed day 17. Had to look at some other peoples stuff for guidance though

This commit is contained in:
Connor Johnstone
2023-12-17 01:43:55 -07:00
parent b7343dc6d5
commit 157d1f01b0
20 changed files with 2203 additions and 0 deletions

28
day_16/Cargo.toml Normal file
View File

@@ -0,0 +1,28 @@
[package]
name = "day_16"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
combinations = "0.1.0"
csv = "1.3.0"
itertools = "0.12.0"
ndarray = "0.15.6"
nom = "7.1.3"
nom_locate = "4.2.0"
num = "0.4.1"
strum = "0.25.0"
strum_macros = "0.25.3"
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
[[bench]]
name = "part1"
harness = false
[[bench]]
name = "part2"
harness = false