chore(rs): use ‹min›/‹max› and ‹HashMap› in skeleton

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2023-07-24 23:07:14 +02:00
parent 183ebc2891
commit c78900b631
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -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!()