我有两个数组one = [1,2,3,4,5,6,7]
和two = [{1=>'10'},{3=>'22'},{7=>'40'}]
两个将有one.length
哈希或更少。如果它的键出现在一个中,我想要一个新的值数组,如果没有,则使用0。
新数组将为[10,0,22,0,0,0,40]
这样做的最佳方式是什么?
答案 0 :(得分:9)
我是使用Enumerable#reduce
和Hash#values_at
two.reduce({}, :merge).values_at(*one).map(&:to_i)
# => [10, 0, 22, 0, 0, 0, 40]
答案 1 :(得分:4)
h = [{1 => '10'}, {3 => '22'}, {7 => '40'}].inject(:merge).to_h
one.map{|e| h[e].to_i}
# => [10, 0, 22, 0, 0, 0, 40]