Added day 6

This commit is contained in:
2023-12-04 21:21:47 +00:00
parent 6d512470de
commit 1f8afe5af0
3 changed files with 69 additions and 1 deletions
+2 -1
View File
@@ -1,7 +1,7 @@
mod solutions;
mod utils;
use std::error::Error;
use std::{error::Error, sync::{Arc, Mutex}};
use solutions::*;
@@ -12,6 +12,7 @@ fn main() -> Result<(), Box<dyn Error>> {
Box::new(day03::Day03 {}),
Box::new(day04::Day04 {}),
Box::new(day05::Day05 {}),
Box::new(day06::Day06 {}),
];
// Run through and generate solutions