From 2fce2d26eed2acc3d2588178ffb7cc7de3205bc3 Mon Sep 17 00:00:00 2001 From: Quentin Boyer Date: Sun, 5 Jan 2025 00:18:14 +0100 Subject: [PATCH] Fix compilation warning --- src/bin/day14.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/day14.rs b/src/bin/day14.rs index bf31251..811c345 100644 --- a/src/bin/day14.rs +++ b/src/bin/day14.rs @@ -1,4 +1,4 @@ -use std::{collections::HashSet, str::FromStr, time::Instant}; +use std::{str::FromStr, time::Instant}; use aoc_2024::{load, print_res}; use bstr::BString;