This commit is contained in:
Spectre 2024-12-02 23:14:39 +01:00
parent 294c0a8e62
commit e1ca0d5f61
76 changed files with 4607 additions and 204 deletions

13
aoc2024/src/day12.rs Normal file
View file

@ -0,0 +1,13 @@
use shared::{Solution, Answer};
pub struct Day12;
impl Solution for Day12 {
fn part_1(&self, input: &str) -> Answer {
Answer::Unimplemented
}
fn part_2(&self, input: &str) -> Answer {
Answer::Unimplemented
}
}