1
0

day1 part 1

This commit is contained in:
2024-12-01 07:43:33 +01:00
parent dd724ac05d
commit ae4f2aa23d
4 changed files with 64 additions and 1 deletions

18
Cargo.lock generated
View File

@@ -5,3 +5,21 @@ version = 4
[[package]]
name = "advent-of-rust-2024"
version = "0.1.0"
dependencies = [
"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",
]