mirror of
https://github.com/anthonyoteri/advent-of-code-2023.git
synced 2026-06-05 23:17:15 -04:00
39144ce57f
Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
16 lines
267 B
Rust
16 lines
267 B
Rust
use day_14::*;
|
|
|
|
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();
|
|
}
|