Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ハッシュのルビー配列があります
arr1 = [:a => {:name=>"Bob",:age=>"10",:city=>"NY"}, :b => {:name=>"Mike",:age=>"20",:city=>"FL"}]
これを変換する最良の方法は何ですか
arr2 = [["Bob",10],["Mike",20]]
ルビーで。
マップを使用します。
arr1.first.values.map{|h| [h[:name], h[:age].to_i]}