idk why i left that trace thing

This commit is contained in:
2024-12-23 23:46:33 +01:00
parent 8e1cf3a4e8
commit 7f8bfe7667
3 changed files with 0 additions and 3 deletions

View File

@@ -123,7 +123,6 @@ let init_cache =
cache
let () =
let () = Printexc.record_backtrace true in
let f = open_in "input.txt" in
let lines = list_of_lines f in
let cache = init_cache in

View File

@@ -60,7 +60,6 @@ let decode_index index =
(index mod 19 - 9, (index / 19) mod 19 - 9, (index / 361) mod 19 - 9, (index / 6859) mod 19 - 9)
let () =
let () = Printexc.record_backtrace true in
let f = open_in "input.txt" in
let monkey_seeds = list_of_lines f |> List.map int_of_string in
let result = monkey_seeds

View File

@@ -121,7 +121,6 @@ let rec find_biggest_clique sorted_list_of_lists =
find_biggest_clique bigger_sets
let () =
let () = Printexc.record_backtrace true in
let f = open_in "input.txt" in
let computer_pairs = list_of_lines f |> List.map parse_computer_pair in
let graph = make_graph computer_pairs in