Advent-of-Code/2023/day-11/src/part2.rs
Kristofers Solo df25a506ba day 11 part 1
2023-12-11 22:23:42 +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(())
}
}