Advent-of-Code/2023/day-15/src/part2.rs
Kristofers Solo 00d5fc2bb8 day 15
part 1
2023-12-16 20:07:59 +02:00

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(())
}
}