From fb330b9b9fada3d482e0a180c1c35cf35b24de12 Mon Sep 17 00:00:00 2001 From: Benjamyn Love Date: Mon, 2 Dec 2024 19:15:23 +1100 Subject: [PATCH] removed debug prints --- aoc-02/src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/aoc-02/src/main.rs b/aoc-02/src/main.rs index 43a825d..b70de9f 100644 --- a/aoc-02/src/main.rs +++ b/aoc-02/src/main.rs @@ -18,7 +18,6 @@ impl ReportList { } self.reports.push(tmp_vec); } - println!("{:?}", self.reports) } fn solve(&mut self) { @@ -29,7 +28,6 @@ impl ReportList { let mut report_safe = true; // Skip the first iteration for (pos, entry) in report.iter().enumerate() { - println!("{}", entry); if pos == 0 { continue; }