From c78900b631c65427088ab90744b93d33df91400e Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Mon, 24 Jul 2023 23:07:14 +0200 Subject: [PATCH] =?UTF-8?q?chore(rs):=20use=20=E2=80=B9min=E2=80=BA/?= =?UTF-8?q?=E2=80=B9max=E2=80=BA=20and=20=E2=80=B9HashMap=E2=80=BA=20in=20?= =?UTF-8?q?skeleton?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matej Focko --- .common/rust/src/main.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.common/rust/src/main.rs b/.common/rust/src/main.rs index 9fabb4d..70d2393 100644 --- a/.common/rust/src/main.rs +++ b/.common/rust/src/main.rs @@ -1,8 +1,12 @@ #![allow(unused_imports)] +// region ‹use› use self::math::*; use self::output::*; use self::input::*; +use std::cmp::{min, max}; +use std::collections::HashMap; +// endregion ‹use› fn solve(s: &mut Scanner) { todo!()