9 lines
174 B
Rust
9 lines
174 B
Rust
use std::fs;
|
|
|
|
use aoc2022::day07::process_part_2;
|
|
|
|
fn main() {
|
|
let file = fs::read_to_string("./inputs/day07.txt").unwrap();
|
|
println!("{}", process_part_2(&file));
|
|
}
|