aoc2016/src/prelude.rs

5 lines
136 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 16:31:23 +00:00
pub use std::collections::{ HashMap as M, HashSet as S };