Created
September 1, 2013 20:33
-
-
Save dasibre/6407117 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
log = [ | |
{time: 201201, x: 2}, | |
{time: 201201, y: 7}, | |
{time: 201201, z: 2}, | |
{time: 201202, a: 3}, | |
{time: 201202, b: 4}, | |
{time: 201202, c: 0} | |
] | |
I want to collapse the array of hashes into this, all the hashes with the same time: should be merged into one. | |
[ | |
{time: 201201, x: 2, y: 7, z: 2}, | |
{time: 201202, a: 3, b: 4, c: 0}, | |
] | |
My solution seems to work, but its functional, it wont work if another element is added to the array. | |
results = [] | |
while log do | |
elt1 = log.select {|x| x[:time] == 201201 } | |
elt2 = log.select {|x| x[:time] == 201202 } | |
results << elt1[0].merge(elt1[1].merge(elt1[2])) | |
results << elt2[0].merge(elt2[1].merge(elt2[2])) | |
break | |
end | |
results |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To get you started
a = log.select {|x| x[:time] == 201202}
x = {}
a.each { |arr| x.merge! arr }