This commit is contained in:
spectre 2023-12-08 01:03:22 +01:00
parent 6d73fba8d0
commit d6a7fc6fc6
4 changed files with 44 additions and 2 deletions

View file

@ -9,10 +9,10 @@ use std::time::Instant;
fn main() {
let now = Instant::now();
let Ok(data) = load(2023, 5)
let Ok(data) = load(2023, 6)
else { return; };
let result = aoc2023::day05::Day05.part_2(&data);
let result = aoc2023::day06::Day06.part_2(&data);
let elapsed = now.elapsed();