prepared other days
This commit is contained in:
parent
6787a05c3a
commit
529e2fad5c
20 changed files with 269 additions and 0 deletions
13
aoc2023/src/day18.rs
Normal file
13
aoc2023/src/day18.rs
Normal 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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue