mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
13 lines
189 B
Rust
13 lines
189 B
Rust
use std::io::Read;
|
|
|
|
use crate::Solution;
|
|
|
|
#[derive(Default)]
|
|
pub struct Day17;
|
|
|
|
impl Solution for Day17 {
|
|
fn part1(&mut self, _input: &mut dyn Read) -> String {
|
|
todo!()
|
|
}
|
|
}
|