说我有这样的数组: ["white", "red", "blue", "red", "white", "green", "red", "blue", "white", "orange"] 我想通过数组创建一个新数组,其中包含每个颜色以及它在原始数组中出现的次数. 因此,在新阵列中
["white", "red", "blue", "red", "white", "green", "red", "blue", "white", "orange"]
我想通过数组创建一个新数组,其中包含每个颜色以及它在原始数组中出现的次数.
因此,在新阵列中,它会报告“白色”出现3次,“蓝色”出现2次等等……
我该怎么做呢?
counts = Hash.new(0) colors.each do |color| counts[color] += 1 end