1
0
Fork 0

Solved day 7 part 1

This commit is contained in:
Pcornat 2023-09-20 20:52:01 +02:00
parent 3a3f62148b
commit 9a5252b635
Signed by: Pcornat
GPG Key ID: 2F3932FF46D9ECA0
2 changed files with 2 additions and 2 deletions

View File

@ -56,8 +56,8 @@ fn main() -> Result<()> {
println!("Solution for problem 6 part 2: {solution}");
}
{
let _file_path = "prob7.txt";
let solution = prob7::solve_part1(include_str!("../prob7.txt"))?;
let _file_path = "prob7_part1.txt";
let solution = prob7::solve_part1(include_str!("../prob7_part1.txt"))?;
println!("Solution for problem 7 part 1: {solution}");
}
Ok(())