diff options
Diffstat (limited to '2024_rust/src/bin/day10.rs')
-rw-r--r-- | 2024_rust/src/bin/day10.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2024_rust/src/bin/day10.rs b/2024_rust/src/bin/day10.rs index 3c208bd..4bd49c8 100644 --- a/2024_rust/src/bin/day10.rs +++ b/2024_rust/src/bin/day10.rs @@ -64,5 +64,5 @@ fn p2(input: &str) -> String { } fn main() { - aoc2024::run_day("10", Some(p1), Some(p2)); + aoc2024::run_day("10", p1, p2); } |