mirror of
https://gitlab.com/mfocko/Codeforces.git
synced 2024-11-09 13:49:06 +01:00
chore(rs): use ‹min›/‹max› and ‹HashMap› in skeleton
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
183ebc2891
commit
c78900b631
1 changed files with 4 additions and 0 deletions
|
@ -1,8 +1,12 @@
|
||||||
#![allow(unused_imports)]
|
#![allow(unused_imports)]
|
||||||
|
|
||||||
|
// region ‹use›
|
||||||
use self::math::*;
|
use self::math::*;
|
||||||
use self::output::*;
|
use self::output::*;
|
||||||
use self::input::*;
|
use self::input::*;
|
||||||
|
use std::cmp::{min, max};
|
||||||
|
use std::collections::HashMap;
|
||||||
|
// endregion ‹use›
|
||||||
|
|
||||||
fn solve(s: &mut Scanner) {
|
fn solve(s: &mut Scanner) {
|
||||||
todo!()
|
todo!()
|
||||||
|
|
Loading…
Reference in a new issue