Clean up lines

This commit is contained in:
Daniel Flanagan 2020-12-05 23:20:53 -06:00
parent ecff477d6e
commit f2d593837e
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
1 changed files with 3 additions and 1 deletions

View File

@ -4,4 +4,6 @@ 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)
s.readAll().split("\n\n").mapIt(
it.split("\n").filterIt(it != "").foldl(a.intersection(b.toHashSet), "abcdefghijklmnopqrstuvwxyz".toHashSet()).len
).foldl(a + b)