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