aoc2016/src/prelude.rs

8 lines
170 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,
};