Skip to content

Instantly share code, notes, and snippets.

@epitron
Created December 6, 2015 12:06
Show Gist options
  • Save epitron/75e78e2547feadb1bb24 to your computer and use it in GitHub Desktop.
Save epitron/75e78e2547feadb1bb24 to your computer and use it in GitHub Desktop.
words = open("advent5.txt").each_line.map(&:strip)
vowels = /[aeiou]/
doubles = /([a-z])\1/
bad = /(ab|cd|pq|xy)/
nice = words.select { |s| (s.scan(vowels).size >= 3) and (s =~ doubles) and not (s =~ bad) }
p nice.size
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment