Skip to content

Commit cc58b4d

Browse files
committed
Update Day04.elm
1 parent a2b6746 commit cc58b4d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

elm/src/Day04.elm

+4
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ remainingNumbers draws line =
126126
|> List.filter (notDrawn draws)
127127

128128

129+
{-| Finds the last draw (or returns 0 if for some reason it can't find it)
130+
-}
129131
lastDraw : Draws -> Int
130132
lastDraw draws =
131133
case draws |> List.reverse |> List.head of
@@ -136,6 +138,8 @@ lastDraw draws =
136138
0
137139

138140

141+
{-| Returns the final score for the board
142+
-}
139143
boardScore : Board -> Draws -> Int
140144
boardScore board draws =
141145
(board

0 commit comments

Comments
 (0)