advent-of-code/2020/src/day6.nim
2020-12-05 23:20:53 -06:00

10 lines
390 B
Nim

import streams, sets, strutils, sequtils
proc part1*(s: Stream): int =
s.readAll().split("\n\n").mapIt(it.split("\n").foldl(a.union(b.toHashSet), initHashSet[char]()).len).foldl(a + b)
proc part2*(s: Stream): int =
s.readAll().split("\n\n").mapIt(
it.split("\n").filterIt(it != "").foldl(a.intersection(b.toHashSet), "abcdefghijklmnopqrstuvwxyz".toHashSet()).len
).foldl(a + b)