This commit is contained in:
Spectre 2024-12-03 02:06:24 +01:00
parent 19fe0a53ff
commit 2c9790a690
7 changed files with 48 additions and 26 deletions

View file

@ -3,7 +3,7 @@ use shared::Answer;
pub fn solution(input: &str, year: usize, day: usize, part: usize) -> Option<Answer> {
match year {
2023 => aoc2024::solution(input, day, part),
2023 => aoc2023::solution(input, day, part),
2024 => aoc2024::solution(input, day, part),
_ => None,
}