We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f57824c commit 7f2ff77Copy full SHA for 7f2ff77
src/day8.rs
@@ -0,0 +1,10 @@
1
+// use aoc_runner_derive::{aoc, aoc_generator};
2
+
3
+// #[aoc_generator(day8)]
4
+// pub fn input_generator(input: &str) -> (Vec<usize>, Vec<usize>) {
5
6
+// #[aoc(day8, part1)]
7
+// pub fn part1(input: &[Equation]) -> usize {
8
9
+// #[aoc(day8, part2)]
10
+// pub fn part2(input: &[Equation]) -> usize {
src/lib.rs
@@ -7,5 +7,6 @@ mod day4;
mod day5;
mod day6;
mod day7;
+mod day8;
11
12
aoc_lib! { year = 2024 }
0 commit comments