Skip to content

Instantly share code, notes, and snippets.

@dd1994
Created October 1, 2015 08:01
Show Gist options
  • Save dd1994/105e6d7543bad1a27f22 to your computer and use it in GitHub Desktop.
Save dd1994/105e6d7543bad1a27f22 to your computer and use it in GitHub Desktop.
统计每个单词出现的次数
def word_count(str)
str_ary = str.split(" ")
str_hash = Hash.new(0)
str_ary.each do |s|
str_hash[s] += 1
end
return str_hash
end
puts word_count("hello hello world world world pa")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment