Skip to content

Commit

Permalink
export list
Browse files Browse the repository at this point in the history
  • Loading branch information
glguy committed Dec 4, 2023
1 parent 6974097 commit 4d8d43e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion solutions/src/2023/01.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ last digits on the line, then sum up all of these numbers.
[29,83,13,24,42,14,76]
-}
module Main where
module Main (main) where

import Advent (fromDigits, format)
import Text.ParserCombinators.ReadP (readP_to_S, string, (<++), choice, get)
Expand Down
2 changes: 1 addition & 1 deletion solutions/src/2023/02.hs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Game 5: 6 red, 1 blue, 3 green; 2 blue, 1 red, 2 green
2286
-}
module Main where
module Main (main) where

import Data.Map (Map)
import Data.Map qualified as Map
Expand Down
2 changes: 1 addition & 1 deletion solutions/src/2023/03.hs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Maintainer : emertens@gmail.com
467835
-}
module Main where
module Main (main) where

import Data.Map (Map)
import Data.Map qualified as Map
Expand Down
2 changes: 1 addition & 1 deletion solutions/src/2023/04.hs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Card 6: 31 18 13 56 72 | 74 77 10 23 35 67 36 11
30
-}
module Main where
module Main (main) where

import Advent (format)
import Data.List (intersect)
Expand Down

0 comments on commit 4d8d43e

Please sign in to comment.