From 77f992a70a8c52da53e555c6e65d1cdbdcec8ff2 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Fri, 16 Dec 2022 21:48:33 +0100 Subject: [PATCH] Cleanup --- 2022/src/bin/day11.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2022/src/bin/day11.rs b/2022/src/bin/day11.rs index 1e8e99a..41bc0f4 100644 --- a/2022/src/bin/day11.rs +++ b/2022/src/bin/day11.rs @@ -1,5 +1,5 @@ #![feature(test)] -use std::{str::FromStr, cmp::{min, max}}; +use std::str::FromStr; use anyhow::Result; use aoc::Solver;