Skip to content

Commit c0efa80

Browse files
committed
day 13 explicit imports
1 parent 6056c98 commit c0efa80

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/AOC2017/Day13.hs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module AOC2017.Day13 (day13a, day13b) where
22

3-
import AOC2017.Types (Challenge)
4-
import Data.Char
5-
import Data.Foldable
6-
import Data.Maybe
3+
import AOC2017.Types (Challenge)
4+
import Data.Char (isDigit)
5+
import Data.Foldable (find)
6+
import Data.Maybe (fromJust)
77

88

99
caughtAt

0 commit comments

Comments
 (0)