Files
advent-of-code-2022-rust/src/dayX.rs
2022-12-05 20:26:50 +01:00

30 lines
503 B
Rust

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();
}
}