Skip to content

Instantly share code, notes, and snippets.

@leekiernan
Last active December 19, 2015 11:09
Show Gist options
  • Save leekiernan/5945268 to your computer and use it in GitHub Desktop.
Save leekiernan/5945268 to your computer and use it in GitHub Desktop.
Read vowels
VOWELS = %w(a e i o u)
"This is a text string".split('').reject { |c| !VOWELS.include? c.downcase }.length
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment