Skip to content

Instantly share code, notes, and snippets.

@fxn
Last active December 6, 2020 18:07
Show Gist options
  • Select an option

  • Save fxn/ae935daeb7554b4caccba3970f1d2a0d to your computer and use it in GitHub Desktop.

Select an option

Save fxn/ae935daeb7554b4caccba3970f1d2a0d to your computer and use it in GitHub Desktop.
import strutils, sequtils, sets
var sum = 0
for group in readAll(stdin).strip.split("\n\n"):
var answers: seq[HashSet[char]]
for person in group.split("\n"):
answers.add(person.toHashSet())
sum += answers.foldl(a * b).card
echo sum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment