mirror of
https://github.com/kristoferssolo/Advent-of-Code.git
synced 2025-10-21 18:00:35 +00:00
20 lines
337 B
Rust
20 lines
337 B
Rust
use color_eyre::Result;
|
|
|
|
pub fn process(input: &str) -> Result<usize> {
|
|
todo!("day xx - part 2");
|
|
Ok(0)
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_process() -> Result<()> {
|
|
let input = "";
|
|
todo!("haven't built test yet");
|
|
assert_eq!(0, process(input)?);
|
|
Ok(())
|
|
}
|
|
}
|