aoc2024/src/prelude.rs
2024-12-02 08:44:42 +03:00

15 lines
268 B
Rust

pub use crate::utils::*;
pub use anyhow::Error;
pub use itertools::Itertools;
pub use std::{
collections::{
HashMap as M,
HashSet as S,
VecDeque as D,
BinaryHeap as B,
},
cmp::Ordering as Or,
};
pub type SS = &'static str;