removed debug prints

This commit is contained in:
Benjamyn Love 2024-12-02 19:15:23 +11:00
parent 1f3f322997
commit fb330b9b9f

View File

@ -18,7 +18,6 @@ impl ReportList {
} }
self.reports.push(tmp_vec); self.reports.push(tmp_vec);
} }
println!("{:?}", self.reports)
} }
fn solve(&mut self) { fn solve(&mut self) {
@ -29,7 +28,6 @@ impl ReportList {
let mut report_safe = true; let mut report_safe = true;
// Skip the first iteration // Skip the first iteration
for (pos, entry) in report.iter().enumerate() { for (pos, entry) in report.iter().enumerate() {
println!("{}", entry);
if pos == 0 { if pos == 0 {
continue; continue;
} }