This commit is contained in:
2022-12-17 17:57:02 +01:00
parent 628e556063
commit 8b1c3ff175
5 changed files with 242 additions and 0 deletions

8
src/bin/day17_1.rs Normal file
View File

@@ -0,0 +1,8 @@
use std::fs;
use aoc2022::day17::process_part_1;
fn main() {
let file = fs::read_to_string("./inputs/day17.txt").unwrap();
println!("{}", process_part_1(&file));
}