mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
26 lines
387 B
Rust
26 lines
387 B
Rust
use std::io::Read;
|
|
|
|
use common::Solution;
|
|
|
|
#[derive(Default)]
|
|
pub struct Day13 {}
|
|
|
|
impl Day13 {
|
|
pub fn new() -> Self {
|
|
Default::default()
|
|
}
|
|
}
|
|
|
|
impl Solution for Day13 {
|
|
fn part1(&mut self, _input: &mut Read) -> String {
|
|
unimplemented!()
|
|
}
|
|
|
|
fn part2(&mut self, _input: &mut Read) -> String {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {}
|