Skip to content

Commit 9c2e0f0

Browse files
committedDec 3, 2024
Day 2 & 3
1 parent e799d1b commit 9c2e0f0

File tree

9 files changed

+1270
-80
lines changed

9 files changed

+1270
-80
lines changed
 

β€Ž2024/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[workspace]
22
resolver = "2"
3-
members = ["helper", "day-01"]
3+
members = ["helper", "day-01", "day-02", "day-03"]
44

55
[workspace.package]
66
version = "1.0.0"
@@ -11,4 +11,5 @@ edition = "2021"
1111
rayon = "1.10.0"
1212
itertools = "0.13.0"
1313
num = "0.4.3"
14+
regex = "1.11.1"
1415
helper = { path = "./helper" }

β€Ž2024/day-02/Cargo.toml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "day-02"
3+
version.workspace = true
4+
edition.workspace = true
5+
6+
[dependencies]
7+
itertools = { workspace = true }
8+
helper = { workspace = true }

0 commit comments

Comments
 (0)