Skip to content

Commit b05d090

Browse files
committed
chore: prepare for AoC 2025
1 parent e6117fe commit b05d090

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

aoclp_solutions/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ use aoclp::build_solvers;
66

77
pub mod y2017;
88
pub mod y2024;
9+
pub mod y2025;
910

1011
build_solvers! {
1112
{ 2017, [01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25] },
12-
{ 2024, [01, 02, 03, 04, 05, 06, 07] }
13+
{ 2024, [01, 02, 03, 04, 05, 06, 07] },
14+
{ 2025, [01] }
1315
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
pub fn part_1() -> i64 {
2+
0
3+
}
4+
5+
pub fn part_2() -> i64 {
6+
0
7+
}

aoclp_solutions/src/y2025/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub mod day_01;

0 commit comments

Comments
 (0)