advent_of_code_2022/days/day09/src/part2.rs

17 lines
189 B
Rust
Raw Normal View History

2023-11-19 22:27:00 -06:00
//TODO:
#![allow(unused)]
pub fn part2() -> usize {
unimplemented!()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_part2() {
assert_eq!(0, 0);
}
}