summary refs log tree commit diff stats
path: root/Program.fs
diff options
context:
space:
mode:
authorBrian Chu <brianmchu42@gmail.com>2022-12-23 11:57:54 -0800
committerBrian Chu <brianmchu42@gmail.com>2022-12-23 11:57:54 -0800
commit7e4bb2316cf6dedb05c40a86b06fc31d93931660 (patch)
tree22ad217252fc1d125cfe3fe697e59750dda09f62 /Program.fs
parent2b99148232e659d10d4e5d77df7956366d28f00d (diff)
downloadAdventOfCode2022-7e4bb2316cf6dedb05c40a86b06fc31d93931660.tar.gz
solution for day 11
Diffstat (limited to 'Program.fs')
-rw-r--r--Program.fs6
1 files changed, 4 insertions, 2 deletions
diff --git a/Program.fs b/Program.fs
index fb79423..048cc71 100644
--- a/Program.fs
+++ b/Program.fs
@@ -26,7 +26,9 @@ match (day, part) with
 | (8, 2) -> printf $"{Day8.part2 ()}\n"
 | (9, 1) -> printf $"{Day9.part1 ()}\n"
 | (9, 2) -> printf $"{Day9.part2 ()}\n"
-| (10, 1) -> printf $"{Day10.part1()}\n"
-| (10, 2) -> printf $"{Day10.part2()}\n"
+| (10, 1) -> printf $"{Day10.part1 ()}\n"
+| (10, 2) -> printf $"{Day10.part2 ()}\n"
+| (11, 1) -> printf $"{Day11.part1 ()}\n"
+| (11, 2) -> printf $"{Day11.part2 ()}\n"
 | (x, y) when (1 <= x && x <= 25) && (y = 1 || y = 2)  -> raise (NotImplemented("not implemented yet"))
 | _ -> raise (NotImplemented("invalid values"))
\ No newline at end of file