aoc2016/src/prelude.rs

10 lines
199 B
Rust
Raw Normal View History

2024-11-19 15:44:07 +00:00
pub use crate::utils::*;
pub use anyhow::Error;
pub use itertools::Itertools;
2024-11-19 20:09:45 +00:00
pub use std::{
collections::{ HashMap as M, HashSet as S },
cmp::Ordering as Or,
};
2024-11-20 06:31:05 +00:00
pub type SS = &'static str;