Skip to content

Instantly share code, notes, and snippets.

@mendelB
Last active August 29, 2015 14:26
Show Gist options
  • Save mendelB/e079a989652d5c5a4362 to your computer and use it in GitHub Desktop.
Save mendelB/e079a989652d5c5a4362 to your computer and use it in GitHub Desktop.
sentence = <<-something
Steven likes the movies. Blake likes to ride his bike but hates movies.
Blake is taller than steven. Steven is a great teacher.
something
counter = Hash.new(0)
sentence.gsub('.', '').split(' ').each do |i| counter[i] += 1 end
counter.each do |k, v| puts "'#{k}' appears #{v} times" if v >= 3 end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment