mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-26 21:30:31 +01:00
Correct formatting.
This commit is contained in:
@@ -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 }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user