mirror of
https://github.com/anthonyoteri/advent-of-code-2023.git
synced 2026-06-06 01:06:53 -04:00
530417e816
Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
16 lines
267 B
Rust
16 lines
267 B
Rust
use day_11::*;
|
|
|
|
fn main() {
|
|
divan::main();
|
|
}
|
|
|
|
#[divan::bench]
|
|
fn part1() {
|
|
part1::process(divan::black_box(include_str!("../input.txt"))).unwrap();
|
|
}
|
|
|
|
#[divan::bench]
|
|
fn part2() {
|
|
part2::process(divan::black_box(include_str!("../input.txt"))).unwrap();
|
|
}
|