impl Solution<Day25> for AdventOfCode2021
This is adventofcode_traits, a minimal, flexible framework for implementing solutions to [Advent of Code] in Rust.
It takes a trait-based approach using const-generics.
This is already serviceable, but there will be frequent breaking changes as the traits are improved and refined. The plan is to release a stable version in time for December 2021.
See the Changelog for a current view of progress.
Please see also the examples.
Implement traits with your solutions to each Day of Advent of Code.
rust
use advent_of_code_traits::{ParseInput, Solution};
and optionally, consts:
rust
use advent_of_code_traits::{days::*, Part1, Part2};
Solution
for your struct.```rust pub struct AdventOfCode2020;
impl Solution
fn part1(input: &Vec<u32>) -> u32 {
// your solution to part1 here...
todo!()
}
fn part2(input: &Vec<u32>) -> u32 {
// your solution to part2 here...
todo!()
}
} ```
"But where does Vec<u32>
come from?", you ask.
Well spotted, eagle-eyed reader!
That comes from your implementation of ParseInput
.
ParseInput
for your struct```rust // ..continued from above
impl ParseInput
fn parse_input(input: &str) -> Self::Parsed {
input
.lines()
.map(|s| s.parse().expect("invalid integer"))
.collect()
}
} ```
Please refer to the examples for more possibilities,
including parsing a different type for each Part and opting out of parsing entirely to work directly with the &str
.
Here comes the ugly part.
rust
let input = std::fs::read_to_string("./input/2020/day1.txt").expect("failed to read input");
<AdventOfCode2020 as Solution<Day1>>::run(input);
This reads input from a file and passes it to your struct.
[Fully Qualified Syntax]
is required in order to disambiguate which day's Solution we are running.
Because the Solution
and ParseInput
traits are generic over const Day: u32
you are free to implement them many times for the same struct.
The compiler will only yell at you if you implement them for the same Day twice (as it should!).
Day1
is used in the examples (because it looks awesome in my humble opinion). It is simply 1_u32
.
advent_of_code_traits::days
looks like this:
mod days {
pub const Day1: u32 = 1;
pub const Day2: u32 = 2;
// ...
pub const Day25: u32 = 25;
}
I am very grateful for @gobanos' [cargo-aoc] which was a huge inspiration while creating this.
This crate is no match for the convenience or ease of use of [cargo-aoc].
Having said that, I hope it brings something new to the table (faster compile times perhaps?) and that others enjoy using this half as much as I enjoyed using [cargo-aoc].
I have used [cargo-aoc] for all of my Advent of Codes in Rust before 2021, and it is a brilliant, crazy use of procedural macros.
Thank you Gobanos! :)
Contributions are welcome, please see CONTRIBUTING
Please also see ARCHITECTURE for a guided tour of sorts of the code base.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in adventofcode_traits by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.