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