32 lines
527 B
Rust
32 lines
527 B
Rust
use std::cmp::Reverse;
|
|
|
|
use crate::day_solver::DaySolver;
|
|
|
|
use super::util;
|
|
|
|
pub struct Day2 {
|
|
}
|
|
|
|
impl Day2 {
|
|
|
|
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 Day2 {}
|
|
}
|
|
}
|
|
|
|
impl DaySolver for Day2 {
|
|
|
|
|
|
fn solve_part1(&mut self) -> String {
|
|
return 0.to_string();
|
|
}
|
|
|
|
fn solve_part2(&mut self) -> String {
|
|
return 0.to_string();
|
|
}
|
|
}
|