Skip to content

Commit

Permalink
update template
Browse files Browse the repository at this point in the history
  • Loading branch information
pawarherschel committed Dec 1, 2024
1 parent d16badc commit 1b2e417
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/template.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
advent_of_code::solution!(%DAY_NUMBER%);

pub(crate) fn parse_%DAY_NUMBER%(input: &str) -> impl Iterator<Item = _> + '_ {
todo!()
}

#[must_use]
pub fn part_one(input: &str) -> Option<u32> {
None
let x = parse_%DAY_NUMBER%(input);
todo!()
}

#[must_use]
pub fn part_two(input: &str) -> Option<u32> {
None
let x = parse_%DAY_NUMBER%(input);
todo!()
}

#[cfg(test)]
Expand Down

0 comments on commit 1b2e417

Please sign in to comment.