summaryrefslogtreecommitdiff
path: root/Main.lean
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2023-12-08 21:16:00 +0100
committerAndreas Grois <andi@grois.info>2023-12-08 21:16:00 +0100
commit244078f9f9e722aceafe64e745b9aa50136fb71a (patch)
tree5e251db1f6e2379006b48e8378b19de1a885a6a4 /Main.lean
parent948138f66cdf8f05cb669e58ba8a2d3e08adf9c7 (diff)
Not working Day8 Part 2.
Seems we need to be smarter.
Diffstat (limited to 'Main.lean')
-rw-r--r--Main.lean1
1 files changed, 1 insertions, 0 deletions
diff --git a/Main.lean b/Main.lean
index eb77968..2439e4b 100644
--- a/Main.lean
+++ b/Main.lean
@@ -34,6 +34,7 @@ def try_run_day_part (day : Days) (part : Parts) (data : String) : IO String :=
| ⟨7,_⟩, Parts.One => impl ⟨7,_⟩ Parts.One data
| ⟨7,_⟩, Parts.Two => impl ⟨7,_⟩ Parts.Two data
| ⟨8,_⟩, Parts.One => impl ⟨8,_⟩ Parts.One data
+ | ⟨8,_⟩, Parts.Two => impl ⟨8,_⟩ Parts.Two data
| _, _ => throw $ IO.userError "The requested combination of day/part has not been implemented yet."
def main (parameters : List String): IO Unit := do