2024-11-19 15:44:07 +00:00
|
|
|
pub use crate::utils::*;
|
|
|
|
|
pub use anyhow::Error;
|
|
|
|
|
pub use itertools::Itertools;
|
2024-11-19 20:09:45 +00:00
|
|
|
pub use std::{
|
|
|
|
|
collections::{ HashMap as M, HashSet as S },
|
|
|
|
|
cmp::Ordering as Or,
|
|
|
|
|
};
|
2024-11-20 06:31:05 +00:00
|
|
|
|
|
|
|
|
pub type SS = &'static str;
|