diff options
| author | Andreas Grois <andi@grois.info> | 2023-12-08 21:16:00 +0100 |
|---|---|---|
| committer | Andreas Grois <andi@grois.info> | 2023-12-08 21:16:00 +0100 |
| commit | 244078f9f9e722aceafe64e745b9aa50136fb71a (patch) | |
| tree | 5e251db1f6e2379006b48e8378b19de1a885a6a4 /Main.lean | |
| parent | 948138f66cdf8f05cb669e58ba8a2d3e08adf9c7 (diff) | |
Not working Day8 Part 2.
Seems we need to be smarter.
Diffstat (limited to 'Main.lean')
| -rw-r--r-- | Main.lean | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |
