Skip to content

Commit

Permalink
Deps
Browse files Browse the repository at this point in the history
  • Loading branch information
code-shoily committed Nov 22, 2024
1 parent 13a1eab commit 149916a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/2020/day_03.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ defmodule AdventOfCode.Y2020.Day03 do

def run_2(input) do
for result <- Enum.map(@slopes, &traverse(input, &1)), reduce: 1 do
acc -> acc * result
acc ->
acc * result
end
end

Expand Down

0 comments on commit 149916a

Please sign in to comment.