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; }