1
0
Fork 0
aoc2025/template.rs
2025-12-11 08:01:42 +01:00

22 lines
390 B
Rust

use aoc::*;
fn main() {
let input = include_str!("../../input/DAY");
println!("Part 1: {}", part1(input));
println!("Part 2: {}", part2(input));
}
#[test]
fn example() {
let input = include_str!("../../input/DAY-test");
assert_eq!(part1(input), 0);
assert_eq!(part2(input), 0);
}
fn part1(input: &str) -> usize {
0
}
fn part2(input: &str) -> usize {
0
}