From cbf2e95d959bc6126d9b76fc58881b9b72620d16 Mon Sep 17 00:00:00 2001 From: OMGeeky <39029799+OMGeeky@users.noreply.github.com> Date: Wed, 13 Dec 2023 17:52:29 +0000 Subject: [PATCH] change template --- src/day_templatce.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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!() } }