Completed day 10. Not wildly happy with my runtime

This commit is contained in:
Connor Johnstone
2023-12-11 00:39:11 -07:00
parent b60591ea38
commit 8b270c236b
13 changed files with 1392 additions and 7 deletions

26
day_10/Cargo.toml Normal file
View File

@@ -0,0 +1,26 @@
[package]
name = "day_10"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
csv = "1.3.0"
ndarray = "0.15.6"
nom = "7.1.3"
num = "0.4.1"
rayon = "1.8.0"
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