parent
1cdb2f668f
commit
12dda2e0a8
@ -0,0 +1,35 @@
|
|||||||
|
|
||||||
|
use crate::Problem;
|
||||||
|
|
||||||
|
pub struct Problem10 {
|
||||||
|
number_list: Vec<u64>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Problem10 {}
|
||||||
|
|
||||||
|
impl Problem for Problem10 {
|
||||||
|
fn new(input: &String) -> Self {
|
||||||
|
Problem10 {
|
||||||
|
number_list: input
|
||||||
|
.split("\n")
|
||||||
|
.filter_map(|s| {
|
||||||
|
let s = s.trim();
|
||||||
|
if !s.is_empty() {
|
||||||
|
Some(s.parse::<u64>().unwrap())
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}).collect(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run_part1(&self) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run_part2(&self) {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
pub mod lib;
|
Loading…
Reference in new issue