Correct formatting.

This commit is contained in:
2019-02-18 15:13:48 +01:00
parent 171d9fa2e9
commit c16ef40d73
28 changed files with 316 additions and 195 deletions

View File

@@ -4,18 +4,15 @@ use std::io::Read;
use common::Solution;
#[derive(Default)]
pub struct Day21 {
}
pub struct Day21 {}
struct ValidInputs {
f: i64
f: i64,
}
impl ValidInputs {
pub fn new(start: i64) -> Self {
ValidInputs {
f: start
}
ValidInputs { f: start }
}
}