mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-26 05:10:32 +01:00
6 lines
108 B
Rust
6 lines
108 B
Rust
use anyhow::Result;
|
|
|
|
pub fn part1(_input: &[u8]) -> Result<String> {
|
|
anyhow::bail!("not implemented")
|
|
}
|