1
0
Fork 0

Changing the line to use the right function.

This commit is contained in:
Florent DENEF 2022-12-09 16:12:29 +01:00
parent e32002c0c5
commit 5117d318ee
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ fn main() {
}
{
let file_path = "prob4_part1.txt";
let max_part1 = prob4::solve_part1(file_path);
let max_part1 = prob4::solve(file_path, &prob4::mutual_inclusion);
println!("Solution for problem 4 part 1: {max_part1}");
}
}