note: I don't really like this solution but whatever fuck it burn
:flame:
This commit is contained in:
2022-12-08 17:01:10 +01:00
parent 3bb12b8b15
commit 5cc16c087d
5 changed files with 195 additions and 0 deletions

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

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

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

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