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

13 lines
245 B
Rust

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