Skip to content

Commit

Permalink
generator module - fix rust template
Browse files Browse the repository at this point in the history
  • Loading branch information
pareronia committed Dec 3, 2024
1 parent b676726 commit 9627c9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/generator/template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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!()
}

Expand Down

0 comments on commit 9627c9f

Please sign in to comment.