aoc prelude
This commit is contained in:
parent
34629ee970
commit
c18cfa45a4
4 changed files with 10 additions and 3 deletions
|
|
@ -5,7 +5,7 @@ fn main() {
|
|||
}
|
||||
|
||||
fn part1(input: &str) -> usize {
|
||||
for line in input.split('\n').filter(|l| !l.is_empty()) {
|
||||
for line in aoc.split_lines(input) {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue