13 lines
245 B
Rust
13 lines
245 B
Rust
use shared::{Solution, Answer};
|
|
|
|
pub struct Day23;
|
|
|
|
impl Solution for Day23 {
|
|
fn part_1(&self, input: &str) -> Answer {
|
|
Answer::Unimplemented
|
|
}
|
|
|
|
fn part_2(&self, input: &str) -> Answer {
|
|
Answer::Unimplemented
|
|
}
|
|
}
|