[WIP] Day 1

This commit is contained in:
2023-12-01 08:59:12 +01:00
commit 446422e0d2
15 changed files with 1496 additions and 0 deletions

29
src/dayX.rs Normal file
View File

@@ -0,0 +1,29 @@
use crate::day_solver::DaySolver;
use super::util;
pub struct DayX {
}
impl DayX {
pub fn create() -> Self {
let lines = util::read_file("input/dayX_example.txt");
// let lines = util::read_file("input/dayX.txt");
// Put the input into the day struct
return DayX {}
}
}
impl DaySolver for DayX {
fn solve_part1(&mut self) -> String {
return 0.to_string();
}
fn solve_part2(&mut self) -> String {
return 0.to_string();
}
}