1
0
Fork 0

Prepare AOC

This commit is contained in:
Lars Martens 2024-11-29 20:28:54 +01:00
commit 3f13305951
7 changed files with 505 additions and 0 deletions

18
template.rs Normal file
View file

@ -0,0 +1,18 @@
use aoc::*;
const INPUT: &str = include_str!("../../input/DAY");
fn main() {
assert_example!(part1, "DAY-test", 0);
println!("Part 1: {}", part1(INPUT));
assert_example!(part2, "DAY-test", 0);
println!("Part 2: {}", part2(INPUT));
}
fn part1(input: &str) -> usize {
0
}
fn part2(input: &str) -> usize {
0
}