mirror of
https://github.com/anthonyoteri/advent-of-code-2023.git
synced 2026-06-05 23:17:15 -04:00
9840fe95e8
Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
18 lines
313 B
Rust
18 lines
313 B
Rust
use day_08::*;
|
|
|
|
fn main() {
|
|
divan::main();
|
|
}
|
|
|
|
#[divan::bench]
|
|
fn part1() {
|
|
let input = include_str!("../input.txt");
|
|
part1::process(divan::black_box(input)).unwrap();
|
|
}
|
|
|
|
#[divan::bench]
|
|
fn part2() {
|
|
let input = include_str!("../input.txt");
|
|
part2::process(divan::black_box(input)).unwrap();
|
|
}
|