From 219e28bc550b4c6a2165a2e559c39aca9c2930d6 Mon Sep 17 00:00:00 2001 From: Acvaxoort Date: Thu, 12 Dec 2024 17:57:20 +0100 Subject: [PATCH] Changed the output so that it prints in two lines instead of one in order to be consistent with previous days --- 12/main.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/12/main.ml b/12/main.ml index 2b2b67d..1db63d3 100644 --- a/12/main.ml +++ b/12/main.ml @@ -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