Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mdr committed Dec 3, 2024
1 parent cb0d65f commit 80787b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Aoc2024/Day03/Solve.lean
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ private def findEnabledMulInstructions (enabled : Bool) : List Instruction -> Li
match instruction with
| Instruction.mul m n =>
if enabled then
Instruction.mul m n ::findEnabledMulInstructions enabled rest
Instruction.mul m n :: findEnabledMulInstructions enabled rest
else
findEnabledMulInstructions enabled rest
| Instruction.do => findEnabledMulInstructions true rest
Expand Down

0 comments on commit 80787b6

Please sign in to comment.