How do you count duplicates in a ruby array?
For example, if my array had three a's, how could I count that
|
How do you count duplicates in a ruby array? For example, if my array had three a's, how could I count that
| ||||
feedback
|
|
This will yield the duplicate elements as a hash with the number of occurences for each duplicate item. Let the code speak:
| |||||||
feedback
|
|
Another version of a hash with a key for each element in your array and value for the count of each element
| |||
|
feedback
|
|
Simple.
| |||
|
feedback
|
|
requires 1.8.7+ for
with 1.9+ this can be slightly simplified because Hash#select will return a hash.
| ||||
|
feedback
|
|
I don't think there's a built-in method. If all you need is the total count of duplicates, you could take a.length - a.uniq.length. If you're looking for the count of a single particular element, try a.select {|e| e == my_element}.length. | |||
|
feedback
|
|
To count instances of a single element use inject
| |||
|
feedback
|