2025-03-29 21:23:32 -04:00

16 lines
236 B
Rust

use crate::Solution;
pub fn run_day_4() -> Solution {
// Lets solve day 4 here!
let solution = Solution {
day: 4,
answer_1: "test".to_string(),
answer_2: "another".to_string(),
};
solution
}