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

13 lines
245 B
Rust

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