Skip to content

Instantly share code, notes, and snippets.

@durrellchamorro
Last active May 27, 2016 23:46
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 durrellchamorro/2683e326078960cec2371a5b126e98ca to your computer and use it in GitHub Desktop.
Save durrellchamorro/2683e326078960cec2371a5b126e98ca to your computer and use it in GitHub Desktop.
Word Count
class Phrase
def initialize(words)
@words = words
end
def word_count
count = Hash.new(0)
@words.scan(/\b[\w']+\b/) do |word|
count[word.downcase] += 1
end
count
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment