adventurous 0.3.0

A companion crate for solving Advent of Code puzzles.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]

mod geometry;
mod input;
mod runner;
mod solve;
mod strings;
pub mod test;

pub use geometry::*;
pub use input::*;
pub use runner::*;
pub use solve::*;
pub use strings::*;

pub use adventurous_macros::{part_one, part_two, test_solutions};