Skip to content

Commit 89bbba5

Browse files
committed
chore: add skeleton for y2025::day_02
1 parent 3b94a14 commit 89bbba5

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

aoclp_solutions/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ pub mod y2025;
1111
build_solvers! {
1212
{ 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] },
1313
{ 2024, [01, 02, 03, 04, 05, 06, 07] },
14-
{ 2025, [01] }
14+
{ 2025, [01, 02] }
1515
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
pub fn part_1() -> usize {
2+
0
3+
}
4+
5+
pub fn part_2() -> usize {
6+
0
7+
}

aoclp_solutions/src/y2025/mod.rs

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

0 commit comments

Comments
 (0)