aoc2024/src/prelude.rs

15 lines
268 B
Rust
Raw Normal View History

2024-12-01 17:36:25 +00:00
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,
},
2024-12-01 17:36:25 +00:00
cmp::Ordering as Or,
};
pub type SS = &'static str;