mirror of
https://github.com/kristoferssolo/Advent-of-Code.git
synced 2025-12-31 05:32:31 +00:00
16 lines
282 B
Rust
16 lines
282 B
Rust
use day_06::{part1, part2};
|
|
|
|
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();
|
|
}
|