This commit is contained in:
2022-12-10 12:39:51 +01:00
parent c8ea1f9fa2
commit fd764a46f1
5 changed files with 418 additions and 0 deletions

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

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