output.sort_by {|k, v| v}.reverse
和钥匙
h = {"a"=>1, "c"=>3, "b"=>2, "d"=>4}
=> {"a"=>1, "c"=>3, "b"=>2, "d"=>4}
Hash[h.sort]
现在我有两个。 但我想通过价值降序排序哈希,这样它会返回
=> {"d"=>4, "c"=>3, "b"=>2, "a"=>1 }
提前致谢。
编辑:让我张贴整个代码。
def count_words(str)
output = Hash.new(0)
sentence = str.gsub(/,/, "").gsub(/'/,"").gsub(/-/, "").downcase
words = sentence.split()
words.each do |item|
output[item] += 1
end
puts Hash[output.sort_by{ |_, v| -v }]
return Hash[output.sort_by{|k, v| v}.reverse]
end