Skip to content

Commit 7f2ff77

Browse files
committed
Add day8
1 parent f57824c commit 7f2ff77

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/day8.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ mod day4;
77
mod day5;
88
mod day6;
99
mod day7;
10+
mod day8;
1011

1112
aoc_lib! { year = 2024 }

0 commit comments

Comments
 (0)