Watch
1
0
Fork
You've already forked advent-of-code
0

aoc prelude

This commit is contained in:
Jeremy Kaplan 2022-12-07 23:05:00 -08:00
commit c18cfa45a4
4 changed files with 10 additions and 3 deletions

View file

@ -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!()
}
}