diff --git a/src/day_templatce.rs b/src/day_templatce.rs index 5e974c4..e1385b4 100644 --- a/src/day_templatce.rs +++ b/src/day_templatce.rs @@ -6,7 +6,7 @@ impl Day for Dayxx { type Input = String; type Output = usize; - fn get_test_data() -> Vec { + fn get_test_data() -> Self::Input { todo!() } @@ -14,7 +14,7 @@ impl Day for Dayxx { todo!() } - fn run(data: Vec) -> Self::Output { + fn run(data: Self::Input) -> Self::Output { todo!() } }