aoc2024/src/prelude.rs

10 lines
214 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 },
cmp::Ordering as Or,
};
pub type SS = &'static str;