summary refs log tree commit diff stats
path: root/lib/day11.ml
diff options
context:
space:
mode:
authorBrian Chu <brianmchu42@gmail.com>2022-08-20 10:19:53 -0700
committerBrian Chu <brianmchu42@gmail.com>2022-08-20 10:19:53 -0700
commitc9a6741617eb28834674a5ef84daae4366ac4101 (patch)
treed0bf55bc68b10d3d152ddbf43d7545cd9e94ed75 /lib/day11.ml
parent484c4a998f9782eb0b84ec9121d6718fa6d35c1d (diff)
downloadAdventOfCode2018-c9a6741617eb28834674a5ef84daae4366ac4101.tar.gz
set up solution skeletons, driver framework, and solution for day 1
Diffstat (limited to 'lib/day11.ml')
-rw-r--r--lib/day11.ml7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/day11.ml b/lib/day11.ml
new file mode 100644
index 0000000..7c5e310
--- /dev/null
+++ b/lib/day11.ml
@@ -0,0 +1,7 @@
+(* Take text input from file and process accordingly *)
+let process_input _input = ()
+
+(* Fill in solutions for each part *)
+let part_1 _input = ()
+
+let part_2 _input = ()