From aae28d30eb95c656806c61adf2a131d49e93a69b Mon Sep 17 00:00:00 2001 From: uku Date: Tue, 10 Dec 2024 01:39:15 +0100 Subject: [PATCH] chore(day9): remove unused import --- src/solutions/day_09.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/solutions/day_09.rs b/src/solutions/day_09.rs index 76f3d93..04a5e5e 100644 --- a/src/solutions/day_09.rs +++ b/src/solutions/day_09.rs @@ -1,5 +1,3 @@ -use itertools::Itertools; - use crate::common::{Answer, Solution}; pub struct Day09;