Expand description
Helper macros to ease the declaration of the functions that contain your solutions of the exercises.
- Use [
solution!()] to declare a new solution inside ofcrate::app::Aoc. - The library currently expects that you want to parse the input. Use either:
- [
failable_parser!()] if the parsing function returns astd::result::Result; - [
parser!()] if the parsing function returns the plain return value.
- [
- Use [
solver!()] to point to the function that solves the exercise.