Ruby combine elements in hash

2019-08-20 13:11发布

I have a has that looks like this:

data = {abc -> [[date1, val1], [date2,val2]], def -> [[date1,val3], [date2,val4]]}

I want to join the abc and def elements so it's like this:

data = {join -> [[date1, val1+val3], [date2, val2+val4]] }

How do I go about this. Note that there are other elements in the hash that should not be modified.

1条回答
聊天终结者
2楼-- · 2019-08-20 13:47

I am assuming that abc, def, and join are actually Symbols.

a = Hash[data.delete(:abc)]  # extract data[:abc] and convert it to a Hash ("a")
b = Hash[data.delete(:def)]  # extract data[:def] and convert it to a Hash ("b")
data[:join] = a.map do |k,v| # iterate over one of the extracted Hashes
  [k, v + (b[k] || 0)]       # for each key, return a 2-item array with the key,
end                          #   and the sum of the values from "a" and "b"
查看更多
登录 后发表回答