add one more piece to the template

This commit is contained in:
David 2022-12-01 08:03:20 -05:00
parent c22b4f753d
commit e66ea212ad
1 changed files with 7 additions and 1 deletions

View File

@ -27,6 +27,12 @@ where
Ok(io::BufReader::new(file).lines())
}
fn part_one() {}
fn part_one() {
if let Ok(lines) = read_lines("./inputs/input") {
for line in lines {
// do stuff
}
}
}
fn part_two() {}