Skip to content

Commit 953c496

Browse files
committed
chore add skeleton for y2025::day_05
1 parent 020a0d7 commit 953c496

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, 08] },
14-
{ 2025, [01, 02, 03, 04] }
14+
{ 2025, [01, 02, 03, 04, 05] }
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
@@ -2,3 +2,4 @@ pub mod day_01;
22
pub mod day_02;
33
pub mod day_03;
44
pub mod day_04;
5+
pub mod day_05;

0 commit comments

Comments
 (0)