I have an array of hashes, and I want the unique values and count out of it. I have:
a = [{:key => 2}, {:key => 1}, {:key => 4}, {:key => 1}]
I want see:
a = [{:key => 2}, {:key => 1, :count =>2}, {:key => 4}]
|
I have an array of hashes, and I want the unique values and count out of it. I have:
I want see:
|
|||
|
|
|
You will just have to iterate over the array and count how many times each key occurs, and then sum it all together by building a new array with the result. The below code snippet should do it.
|
|||
|
|
|
Try this:
|
||||
|
|
|
Try this:
|
|||
|
|
|
The most concise way there is (I think) is this:
or if you don't want to modify the hashes in a:
A (marginally) prettier solution that yields a different result is:
Check out the documentation on Enumerable#count and Enumerable#group_by to learn more of what you can do with those. |
|||
|
|