aocrust/aoc2024/src/day21.rs
2024-12-02 23:14:39 +01:00

13 lines
245 B
Rust

use shared::{Solution, Answer};
pub struct Day21;
impl Solution for Day21 {
fn part_1(&self, input: &str) -> Answer {
Answer::Unimplemented
}
fn part_2(&self, input: &str) -> Answer {
Answer::Unimplemented
}
}