Changed the output so that it prints in two lines instead of one in order to be consistent with previous days

This commit is contained in:
2024-12-12 17:57:20 +01:00
parent 1d3f550988
commit 219e28bc55

View File

@@ -93,4 +93,4 @@ let () =
let f = open_in "input.txt" in
let arr = file_to_2d_array f in
let result, result2 = find_all_regions_cost arr in
printf "%d %d\n" result result2
printf "%d\n%d\n" result result2