aoc2024/src/prelude.rs
2024-12-02 17:08:23 +03:00

18 lines
309 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,
Reverse as Rev,
},
};
pub type SS = &'static str;