Init
This commit is contained in:
commit
fc496204e7
24 changed files with 2758 additions and 0 deletions
17
AoC_2025/src/days/day01.rs
Normal file
17
AoC_2025/src/days/day01.rs
Normal 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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue