From 6a634c1e58ad585a33148e4b18c2a64185413f66 Mon Sep 17 00:00:00 2001 From: JasterV Date: Thu, 2 Dec 2021 14:29:51 +0100 Subject: [PATCH] removes comments --- day1/src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/day1/src/main.rs b/day1/src/main.rs index 5eebe06..1230f49 100644 --- a/day1/src/main.rs +++ b/day1/src/main.rs @@ -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(())