Day 18, part 2

This commit is contained in:
jazzpi
2022-12-20 17:20:12 +01:00
parent ff8870eb3e
commit 813c9f0612
2 changed files with 137 additions and 10 deletions

10
src/bin/d18p2.rs Normal file
View File

@ -0,0 +1,10 @@
use aoc22::{day18, util};
pub fn main() {
let droplet = day18::parse_droplet(&util::parse_input());
println!(
"Outer surface area: {}",
day18::outer_surface_area(&droplet)
);
}