我不明白 CodeAcademy 中的这个特定步骤。
text = puts "Hello text please"
text = gets.chomp
words = text.split(' ')
frequencies = Hash.new(0)
words.each { |x| frequencies[x] += 1 }
这个想法是过滤输入以返回每个单词的哈希值和单词出现的次数。无法理解为什么会这样。
words.each { |x| frequencies[x] += 1 }
哈希不是通过{key, value}
方法起作用吗?