summary refs log tree commit diff stats
path: root/Program.fs
diff options
context:
space:
mode:
authorBrian Chu <brianmchu42@gmail.com>2022-12-09 21:30:18 -0800
committerBrian Chu <brianmchu42@gmail.com>2022-12-09 21:30:18 -0800
commitcdabc548b41b1990393b6d563c813352bb8dbf01 (patch)
tree2110481babcd4dc0fe54d75789582d3017a33222 /Program.fs
parentc6b298b561c66f1b3255baee071ad6c058ea4e66 (diff)
downloadAdventOfCode2022-cdabc548b41b1990393b6d563c813352bb8dbf01.tar.gz
solution for day 8
Diffstat (limited to 'Program.fs')
-rw-r--r--Program.fs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Program.fs b/Program.fs
index 7d12388..ff91000 100644
--- a/Program.fs
+++ b/Program.fs
@@ -22,5 +22,7 @@ match (day, part) with
 | (6, 2) -> printf $"{Day6.part2 ()}\n"
 | (7, 1) -> printf $"{Day7.part1 ()}\n"
 | (7, 2) -> printf $"{Day7.part2 ()}\n"
+| (8, 1) -> printf $"{Day8.part1 ()}\n"
+| (8, 2) -> printf $"{Day8.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