day17
This commit is contained in:
8
src/bin/day17_1.rs
Normal file
8
src/bin/day17_1.rs
Normal 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));
|
||||
}
|
||||
Reference in New Issue
Block a user