day 5 completed

This commit is contained in:
simon
2024-10-09 13:44:52 +02:00
parent e7461baa77
commit 2fd98296a3
5 changed files with 593 additions and 0 deletions

39
2023/day5/Cargo.lock generated Normal file
View File

@@ -0,0 +1,39 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "advent-of-code"
version = "2022.0.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa9b6f396f926720a5233bf0bc661245d5325f3b5ad33d7946bf74e491a14af1"
[[package]]
name = "cute"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45e700c2d1c3feea9b695e79b2dfeeb93040556a58c556fae23f71b1e6b449fd"
[[package]]
name = "day5"
version = "0.1.0"
dependencies = [
"advent-of-code",
"cute",
"itertools",
]
[[package]]
name = "either"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
[[package]]
name = "itertools"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
dependencies = [
"either",
]