1
0
Fork 0

init for prob4 part 1

This commit is contained in:
Pcornat 2022-12-06 22:31:22 +01:00
parent c95ef5ebdb
commit 0b28444120
Signed by: Pcornat
GPG Key ID: 2F3932FF46D9ECA0
4 changed files with 1003 additions and 2 deletions

1000
prob4_part1.txt Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,4 @@
pub mod prob1;
pub mod prob2;
pub mod prob3;
pub mod prob3;
pub mod prob4;

View File

@ -21,6 +21,6 @@ fn main() {
{
let file_path = "prob3_part2.txt";
let max_part2 = prob3::solve_part2(file_path);
println!("Solution for problem 3 part 1: {max_part2}");
println!("Solution for problem 3 part 2: {max_part2}");
}
}

0
src/prob4/mod.rs Normal file
View File