Skip to content

Instantly share code, notes, and snippets.

@boone
Last active December 7, 2015 04:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boone/de545dbf325c03ca56c9 to your computer and use it in GitHub Desktop.
Save boone/de545dbf325c03ca56c9 to your computer and use it in GitHub Desktop.
#!/bin/bash
# http://adventofcode.com/day/5
# Part 1
grep ".*[aeiou].*[aeiou].*[aeiou].*" day5_input.txt | grep -E "([a-z])\1" | grep -v -E "(ab|cd|pq|xy)" | wc -l
# Part 2
grep -E "([a-z]).{1}\1" day5_input.txt | grep -E "([a-z]{2}).*\1" | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment