From 9627c9f254cffd775f7a6c4163ce45f53ee608cd Mon Sep 17 00:00:00 2001 From: pareronia <49491686+pareronia@users.noreply.github.com> Date: Tue, 3 Dec 2024 01:05:36 +0100 Subject: [PATCH] generator module - fix rust template --- src/main/resources/generator/template.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/generator/template.rs b/src/main/resources/generator/template.rs index 055c79cb..71afdad9 100644 --- a/src/main/resources/generator/template.rs +++ b/src/main/resources/generator/template.rs @@ -17,11 +17,11 @@ impl aoc::Puzzle for AoC${year}_${day2} { lines } - fn part_1(&self, input: &Self::Input) -> u32 { + fn part_1(&self, input: &Self::Input) -> Self::Output1 { todo!() } - fn part_2(&self, input: &Self::Input) -> u32 { + fn part_2(&self, input: &Self::Input) -> Self::Output2 { todo!() }