advent_of_code_2022/src/day07/part2.rs
2023-10-31 17:37:40 -05:00

17 lines
234 B
Rust

#![allow(unused)]
use crate::file_tree::*;
use crate::parser::*;
pub fn part2() -> usize {
unimplemented!()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_part2() {
assert_eq!(part2(), 0);
}
}