diff --git a/2022/day03/src/types.rs b/2022/day03/src/types.rs index e7af0d4..114bc48 100644 --- a/2022/day03/src/types.rs +++ b/2022/day03/src/types.rs @@ -72,7 +72,6 @@ impl FromStr for Rucksack { fn from_str(s: &str) -> Result { let items = s .chars() - .into_iter() .map(Item::try_from) .collect::, _>>()?; if items.len() % 2 != 0 {