removes comments

This commit is contained in:
JasterV 2021-12-02 14:29:51 +01:00
parent 6028321cf4
commit 6a634c1e58

View file

@ -8,9 +8,7 @@ const INPUT_PATH: &'static str = "./input.txt";
fn main() -> Result<()> {
let depths = read_depths(INPUT_PATH)?;
// First puzzle
println!("First puzzle {0}", count_increases(&depths));
// Second puzzle
let sliding_window_sums = calculate_sliding_window_sums(&depths, 3);
println!("Second puzzle {0}", count_increases(&sliding_window_sums));
Ok(())