This commit is contained in:
dolphinau 2025-12-01 13:03:29 +01:00
commit fc496204e7
No known key found for this signature in database
24 changed files with 2758 additions and 0 deletions

View file

@ -0,0 +1,17 @@
use crate::days::Solution;
pub struct Day01;
impl Solution for Day01 {
type Input = ();
fn parse(&self, data: &str) -> Self::Input {}
fn part1(&self, input: &Self::Input) -> usize {
0
}
fn part2(&self, input: &Self::Input) -> usize {
0
}
}