This commit is contained in:
2022-12-07 16:12:30 +01:00
parent 67fc0bbcb5
commit 30edbeb9b9
5 changed files with 1271 additions and 0 deletions

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

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

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

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