30 lines
503 B
Rust
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();
|
|
}
|
|
}
|