dumb_shit/2022-aoc/template.rs

19 lines
300 B
Rust
Raw Normal View History

2022-12-09 20:57:09 +00:00
use aoc_runner_derive::{aoc as aoc_run, aoc_generator};
type INPUT = char;
#[aoc_generator(dayDAY)]
fn parse_input(input: &str) -> Vec<INPUT> {
todo!()
}
#[aoc_run(dayDAY, part1)]
2022-12-10 19:46:20 +00:00
fn part1(input: &[INPUT]) -> u32 {
2022-12-09 20:57:09 +00:00
0
}
#[aoc_run(dayDAY, part2)]
2022-12-10 19:46:20 +00:00
fn part2(input: &[INPUT]) -> u32 {
2022-12-09 20:57:09 +00:00
0
}