aocrust/aoc2023/src/day18.rs
2023-12-08 12:32:16 +01:00

13 lines
245 B
Rust

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
}
}