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