mirror of
https://github.com/kristoferssolo/Advent-of-Code.git
synced 2025-10-21 18:00:35 +00:00
22 lines
309 B
Rust
22 lines
309 B
Rust
use day_08::*;
|
|
|
|
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();
|
|
}
|