Day 6 Complete :) Super easy day!

This commit is contained in:
2023-12-06 12:40:36 +00:00
parent c1668c8397
commit c4c423871e
6 changed files with 65 additions and 10 deletions
+2 -3
View File
@@ -13,7 +13,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
Box::new(day03::Day03 {}),
Box::new(day04::Day04 {}),
Box::new(day05::Day05 {}),
// Box::new(day06::Day06 {}),
Box::new(day06::Day06 {}),
// Box::new(day07::Day07 {}),
// Box::new(day08::Day08 {}),
// Box::new(day09::Day09 {}),
@@ -58,6 +58,5 @@ async fn main() -> Result<(), Box<dyn Error>> {
}
println!("Ran AoC 2023 in {}ms", SystemTime::now().duration_since(start_time)?.as_millis());
Ok(())
}
}