私はこのような配列を持っています:
["Is", "Gandalf", "The", "Gray", "Insane"]
配列内のキーの位置に従ってハッシュを並べ替えたいと思います。たとえば、次のように並べ替えます。
{:count=>21, "Is"=>19, "Gandalf"=>1, "Gray"=>0, "Insane"=>1, "The"=>5}
これに:
{"Is"=>19, "Gandalf"=>1, "The"=>5, "Gray"=>0, "Insane"=>1, :count=>21}
別の例はこれをソートすることです:
{:count=>3, "Is"=>11, "Insane"=>22, "Gray"=>0, "Gandalf"=>12, "The"=>2}
これに:
{"Is"=>11, "Gandalf"=>12, "The"=>2, "Gray"=>12, "Insane"=>22, :count=>3}
どのようにそれをしますか?