How do I get the unique elements from an array of hashes in Ruby? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T04:57:05Zhttp://stackoverflow.com/feeds/question/181091http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/181091/how-do-i-get-the-unique-elements-from-an-array-of-hashes-in-ruby2How do I get the unique elements from an array of hashes in Ruby?Aaron Hinni2008-10-08T01:40:53Z2009-05-07T13:18:24Z
<p>I have an array of hashes, and I want the unique values out of it. Calling <code>Array.uniq</code> doesn't give me what I expect.</p>
<pre><code>a = [{:a => 1},{:a => 2}, {:a => 1}]
a.uniq # => [{:a => 1}, {:a => 2}, {:a => 1}]
</code></pre>
<p>Where I expected:</p>
<pre><code>[{:a => 1}, {:a => 2}]
</code></pre>
<p>In searching around on the net, I didn't come up with a solution that I was happy with. Folks recommended redefining <code>Hash.eql?</code> and <code>Hash.hash</code>, since that is what <code>Array.uniq</code> is querying.</p>
<p>Edit:
Where I ran into this in the real world, the hashes were slightly more complex. They were the result of parsed JSON that had multiple fields, some of which the values were hashes as well. I had an array of those results that I wanted to filter out the unique values.</p>
<p>I don't like the redefine <code>Hash.eql?</code> and <code>Hash.hash</code> solution, because I would either have to redefine <code>Hash</code> globally, or redefine it for each entry in my array. Changing the definition of <code>Hash</code> for each entry would be cumbersome, especially since there may be nested hashes inside of each entry.</p>
<p>Changing <code>Hash</code> globally has some potential, especially if it were done temporarily. I'd want to build another class or helper function that wrapped saving off the old definitions, and restoring them, but I think this adds more complexity than is really needed.</p>
<p>Using <code>inject</code> seems like a good alternative to redefining <code>Hash</code>.</p>
http://stackoverflow.com/questions/181091/how-do-i-get-the-unique-elements-from-an-array-of-hashes-in-ruby/181096#1810968Answer by Aaron Hinni for How do I get the unique elements from an array of hashes in Ruby?Aaron Hinni2008-10-08T01:44:15Z2008-10-08T01:44:15Z<p>I can get what I want by calling <code>inject</code></p>
<pre><code>a = [{:a => 1},{:a => 2}, {:a => 1}]
a.inject([]) { |result,h| result << h unless result.include?(h); result }
</code></pre>
<p>This will return:</p>
<pre><code>[{:a=>1}, {:a=>2}]
</code></pre>
http://stackoverflow.com/questions/181091/how-do-i-get-the-unique-elements-from-an-array-of-hashes-in-ruby/181396#1813960Answer by Mark Reid for How do I get the unique elements from an array of hashes in Ruby?Mark Reid2008-10-08T04:52:36Z2008-10-08T04:52:36Z<p>The answer you give is similar to the one discussed <a href="http://mikeburnscoder.wordpress.com/2008/01/18/uniquify-an-array-of-hashes-in-ruby/" rel="nofollow">here</a>. It overrides the <code>hash</code> and <code>eql?</code> methods on the hashes that are to appear in the array which then makes <code>uniq</code> behave correctly.</p>
http://stackoverflow.com/questions/181091/how-do-i-get-the-unique-elements-from-an-array-of-hashes-in-ruby/183692#1836920Answer by glenn mcdonald for How do I get the unique elements from an array of hashes in Ruby?glenn mcdonald2008-10-08T16:35:11Z2008-10-08T16:35:11Z<p>Assuming your hashes are always single key-value pairs, this will work:</p>
<pre><code>a.map {|h| h.to_a[0]}.uniq.map {|k,v| {k => v}}
</code></pre>
<p>Hash.to_a creates an array of key-value arrays, so the first map gets you:</p>
<pre><code>[[:a, 1], [:a, 2], [:a, 1]]
</code></pre>
<p>uniq on Arrays does what you want, giving you:</p>
<pre><code>[[:a, 1], [:a, 2]]
</code></pre>
<p>and then the second map puts them back together as hashes again.</p>
http://stackoverflow.com/questions/181091/how-do-i-get-the-unique-elements-from-an-array-of-hashes-in-ruby/618369#6183690Answer by Ed for How do I get the unique elements from an array of hashes in Ruby?Ed2009-03-06T10:29:41Z2009-03-06T10:29:41Z<p>found on google
<a href="http://mikeburnscoder.wordpress.com/2008/01/18/uniquify-an-array-of-hashes-in-ruby/" rel="nofollow">http://mikeburnscoder.wordpress.com/2008/01/18/uniquify-an-array-of-hashes-in-ruby/</a></p>
http://stackoverflow.com/questions/181091/how-do-i-get-the-unique-elements-from-an-array-of-hashes-in-ruby/834604#8346041Answer by naquad for How do I get the unique elements from an array of hashes in Ruby?naquad2009-05-07T13:18:24Z2009-05-07T13:18:24Z<p>I've had a similar situation, but hashes had keys. I used sorting method.</p>
<p>What I mean:</p>
<p>you have an array:</p>
<pre><code>[{:x=>1},{:x=>2},{:x=>3},{:x=>2},{:x=>1}]
</code></pre>
<p>you sort it (<code>#sort_by {|t| t[:x]}</code>) and get this:</p>
<pre><code>[{:x=>1}, {:x=>1}, {:x=>2}, {:x=>2}, {:x=>3}]
</code></pre>
<p>now a bit modified version of answer by Aaaron Hinni:</p>
<pre><code>your_array.inject([]) do |result,item|
result << item if !result.last||result.last[:x]!=item[:x]
result
end
</code></pre>
<p>I've also tried:</p>
<pre><code>test.inject([]) {|r,h| r<<h unless r.find {|t| t[:x]==h[:x]}; r}.sort_by {|t| t[:x]}
</code></pre>
<p>but it's very slow. here is my benchmark:</p>
<pre><code>test=[]
1000.times {test<<{:x=>rand}}
Benchmark.bmbm do |bm|
bm.report("sorting: ") do
test.sort_by {|t| t[:x]}.inject([]) {|r,h| r<<h if !r.last||r.last[:x]!=h[:x]; r}
end
bm.report("inject: ") {test.inject([]) {|r,h| r<<h unless r.find {|t| t[:x]==h[:x]}; r}.sort_by {|t| t[:x]} }
end
</code></pre>
<p>results:</p>
<pre><code>Rehearsal ---------------------------------------------
sorting: 0.010000 0.000000 0.010000 ( 0.005633)
inject: 0.470000 0.140000 0.610000 ( 0.621973)
------------------------------------ total: 0.620000sec
user system total real
sorting: 0.010000 0.000000 0.010000 ( 0.003839)
inject: 0.480000 0.130000 0.610000 ( 0.612438)
</code></pre>