Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't seem to find anywhere that talks about doing this.

Say I have a hash {"23"=>[0,3]} and I want to merge in this hash {"23"=>[2,3]} to result with this hash {"23"=>[0,2,3]}

Or how about {"23"=>[3]} merged with {"23"=>0} to get {"23"=>[0,3]}

Thanks!

share|improve this question
Well, what have you tried? Anyway, looked at inject? There might be a more clever zip-by-key approach, though... – user166390 Jun 23 '12 at 18:15
@pst: Or, better, reduce? :) – Sergio Tulentsev Jun 23 '12 at 18:16
@SergioTulentsev Or something :-) – user166390 Jun 23 '12 at 18:16
I've looked at both inject and reduce but I honestly don't understand how those function work and what they are capable of doing. They have always been a mystery to me. :\ – bfcoder Jun 23 '12 at 18:31
What do you mean you looked at both, they are aliased methods. I guess @SergioTulentsev was trying to make a joke. If you want to understand how they work, you should read up on folds: en.wikipedia.org/wiki/Fold_(higher-order_function) – Michael Kohl Jun 23 '12 at 19:00
show 2 more comments

1 Answer

up vote 7 down vote accepted
{"23"=>[0,3]}.merge({"23"=>[2,3]}){ |key,oldval,newval| oldval | newval }
#=> {"23"=>[0, 3, 2]}

More generic way to handle also non-array values:

{"23"=>[0,3]}.merge({"23"=>[2,3]}) do |key, oldval, newval|
  (newval.is_a?(Array) ? (oldval + newval) : (oldval << newval)).uniq
end

Updated with a Marc-André Lafortune's hint .

share|improve this answer
2  
Didn't know merge could take a block. Sweet! – Pedro Nascimento Jun 23 '12 at 18:32
That is awesome. Works perfectly! +1 for megas! Thanks! – bfcoder Jun 23 '12 at 18:42
3  
Better, shorter, faster to use oldval | newval then (oldval + newval).uniq – Marc-André Lafortune Jun 23 '12 at 19:29
Marc-André Lafortune thanks, didn't know that. – megas Jun 23 '12 at 19:41
Awesome, thanks Marc-André Lafortune Faster and shorter is always better. :] – bfcoder Jun 23 '12 at 21:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.