day 22 part 1

This commit is contained in:
2024-10-31 22:09:56 +01:00
parent eba60c4c97
commit f599a40720
5 changed files with 305 additions and 0 deletions

18
src/day23.rs Normal file
View File

@@ -0,0 +1,18 @@
use aoc_runner_derive::{aoc, aoc_generator};
type Input = ();
#[aoc_generator(day22)]
fn parse(input: &str) -> Input {
todo!()
}
#[aoc(day22, part1)]
fn part1(_: &Input) -> usize {
0
}
#[aoc(day22, part2)]
fn part2(_: &Input) -> usize {
0
}