mirror of
https://github.com/kristoferssolo/Advent-of-Code.git
synced 2025-10-21 18:00:35 +00:00
16 lines
271 B
Rust
16 lines
271 B
Rust
use day_03::*;
|
|
|
|
fn main() {
|
|
divan::main();
|
|
}
|
|
|
|
#[divan::bench]
|
|
fn part1() {
|
|
part1::process(divan::black_box(include_str!("../input1.txt",))).unwrap();
|
|
}
|
|
|
|
#[divan::bench]
|
|
fn part2() {
|
|
part2::process(divan::black_box(include_str!("../input2.txt",))).unwrap();
|
|
}
|