mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
10 lines
145 B
Rust
10 lines
145 B
Rust
use std::io::Read;
|
|
|
|
pub fn part1(_input: &mut dyn Read) -> String {
|
|
todo!()
|
|
}
|
|
|
|
pub fn part2(_input: &mut dyn Read) -> String {
|
|
todo!()
|
|
}
|