1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
use crate::Input;

pub fn solve(_input: &mut Input) -> Result<u32, String> {
    Err("Not yet implemented".to_string())
}

#[test]
pub fn tests() {
    use crate::{test_part_one_error, test_part_two_error};

    let real_input = include_str!("day07_input.txt");
    test_part_one_error!(real_input => "Not yet implemented".to_string());
    test_part_two_error!(real_input => "Not yet implemented".to_string());
}