day6: add haskell solution

This commit is contained in:
Xiretza 2020-12-06 07:38:48 +01:00
parent 1900e5128b
commit 63c6f24ef5
Signed by: xiretza
GPG Key ID: 17B78226F7139993
2 changed files with 10 additions and 0 deletions

View File

@ -11,3 +11,4 @@ https://adventofcode.com/2020/
| 3 | `**` | `**` | | | 3 | `**` | `**` | |
| 4 | `**` | `**` | | | 4 | `**` | `**` | |
| 5 | | `**` | | | 5 | | `**` | |
| 6 | | `**` | |

9
day6/day6.hs Normal file
View File

@ -0,0 +1,9 @@
import AoC
import qualified Data.Set as S
import Data.Set (Set)
main = runAoC ((fmap . fmap) S.fromList . splitOnEmptyLines) part1 part2
where part1 = countSetsFolded S.union
part2 = countSetsFolded S.intersection
countSetsFolded f = sum . map (S.size . foldr1 f)