16 lines
236 B
Rust
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
|
||
|
|
|
||
|
|
}
|