aoc2024/src/prelude.rs

18 lines
309 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-02 14:08:23 +00:00
cmp::{
Ordering as Or,
Reverse as Rev,
},
2024-12-01 17:36:25 +00:00
};
pub type SS = &'static str;