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

pub fn solve(_input: &mut Input) -> Result<i32, String> {
    Ok(0)
}

#[test]
pub fn tests() {
    use crate::input::{test_part_one, test_part_two};

    let real_input = include_str!("day24_input.txt");
    test_part_one!(real_input => 0);
    test_part_two!(real_input => 0);
}