prepared other days

This commit is contained in:
Spectre 2023-12-08 12:32:16 +01:00
parent 6787a05c3a
commit 529e2fad5c
20 changed files with 269 additions and 0 deletions

13
aoc2023/src/day18.rs Normal file
View file

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