I have been informed that americans are weird and advent of code

actually has 25 days
This commit is contained in:
CherryKitten 2023-12-01 10:20:10 +01:00
parent 8c8d960e85
commit ba32fa8032
Signed by: sammy
GPG key ID: 98D8F75FB0658276

View file

@ -39,6 +39,7 @@ fn main() {
22 => day_22(input),
23 => day_23(input),
24 => day_24(input),
25 => day_25(input),
_ => (),
}
}
@ -115,3 +116,7 @@ fn day_23(input: String) {
fn day_24(input: String) {
todo!()
}
fn day_25(input: String) {
todo!()
}