From 1c9eb251cb44a60aa1c491a1326ad5f3e7de35c2 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Fri, 7 Jul 2023 14:01:20 +0200 Subject: [PATCH] day(22): remove unused yield Signed-off-by: Matej Focko --- src/bin/day22.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bin/day22.rs b/src/bin/day22.rs index e622261..5c1c030 100644 --- a/src/bin/day22.rs +++ b/src/bin/day22.rs @@ -292,7 +292,6 @@ impl Solution for Day22 { let end = last_non_empty.next().unwrap_or((upper_bound, &'_')).0 as isize; boundaries.insert(constructor(i), start..end); - (constructor(i), start..end) }; // construct all horizontal boundaries