18 lines
277 B
Rust
18 lines
277 B
Rust
|
//! Commonly used imports.
|
||
|
|
||
|
pub use std::{
|
||
|
collections::{HashMap, HashSet, VecDeque},
|
||
|
str::FromStr,
|
||
|
};
|
||
|
|
||
|
pub use {
|
||
|
color_eyre::{
|
||
|
eyre::{eyre, Error},
|
||
|
Result,
|
||
|
},
|
||
|
itertools::Itertools,
|
||
|
pathfinding::prelude::astar,
|
||
|
};
|
||
|
|
||
|
pub use crate::solution::{Day, Solution};
|