1
0
mirror of https://gitlab.com/MisterBiggs/aoc_2015-rust.git synced 2025-06-16 15:06:49 +00:00

day 1 cleanup

This commit is contained in:
Anson 2022-11-02 22:50:31 -06:00
parent 84e90489b2
commit b3e1772c8f

View File

@ -6,9 +6,6 @@ pub fn run() {
.expect("Could not read file") .expect("Could not read file")
.to_string(); .to_string();
// part1(&lines);
// part2(&lines);
println!("\tPart 1: {}", part1(&input)); println!("\tPart 1: {}", part1(&input));
println!("\tPart 2: {}", part2(&input)); println!("\tPart 2: {}", part2(&input));
} }