From 8ff53967fac0ba5c8cee1a248a38e8e0ad1b72ee Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Fri, 9 Feb 2024 11:45:18 +0100 Subject: Remove OCaml build --- 2023/ocaml/day2/_build/default/bin/main.ml | 39 ------------------------------ 1 file changed, 39 deletions(-) delete mode 100644 2023/ocaml/day2/_build/default/bin/main.ml (limited to '2023/ocaml/day2/_build/default/bin/main.ml') diff --git a/2023/ocaml/day2/_build/default/bin/main.ml b/2023/ocaml/day2/_build/default/bin/main.ml deleted file mode 100644 index 6dba854..0000000 --- a/2023/ocaml/day2/_build/default/bin/main.ml +++ /dev/null @@ -1,39 +0,0 @@ -let input_file = "input.txt" - -let read_file f = - let ic = open_in f in - try - let lines = really_input_string ic (in_channel_length ic) in - let lines = String.trim lines in - close_in ic ; - lines - with e -> - close_in_noerr ic; - raise e - -let rec parse ?(result=0) body = - match body with - | [] -> result - | x :: tail -> - let plays = String.split_on_char ':' x - |> List.rev - |> List.hd - |> String.split_on_char ';' - |> List.map (String.split_on_char ',') - |> List.map (List.map @@ String.trim) - |> List.map (List.map (fun x -> (List.hd (String.split_on_char ' ' x) |> int_of_string, String.get (List.nth (String.split_on_char ' ' x) 1 ) 0))) - in - - - let points = List.map (List.map (fun (p,c) -> if (c = 'r' && p > 12) || (c = 'g' && p > 13) || (c = 'b' && p > 14) then 0 else 1)) plays in - let add = if List.length (List.filter (fun x -> List.length x > 0) @@ List.map (List.filter (fun x -> x = 0)) points) = 0 then - String.split_on_char ':' x |> List.hd |> String.split_on_char ' ' |> List.rev |> List.hd |> int_of_string - else - 0 in - - parse tail ~result:(result+add) - - -let () = - let result = parse (String.split_on_char '\n' (read_file input_file)) in - Printf.printf "%d" result -- cgit v1.2.3-18-g5258