up vote 3 down vote favorite
1
share [g+] share [fb]

How do you count duplicates in a ruby array?

For example, if my array had three a's, how could I count that

link|improve this question

Uhm, can you clarify? Are you asking how to count how many "a"'s an array has? – hrnt Nov 19 '09 at 18:14
feedback

6 Answers

up vote 7 down vote accepted

This will yield the duplicate elements as a hash with the number of occurences for each duplicate item. Let the code speak:

#!/usr/bin/env ruby

class Array
  # monkey-patched version
  def dup_hash
    inject(Hash.new(0)) { |h,e| h[e] += 1; h }.select { 
      |k,v| v > 1 }.inject({}) { |r, e| r[e.first] = e.last; r }
  end
end

# unmonkeey'd
def dup_hash(ary)
  ary.inject(Hash.new(0)) { |h,e| h[e] += 1; h }.select { 
    |k,v| v > 1 }.inject({}) { |r, e| r[e.first] = e.last; r }
end

p dup_hash([1, 2, "a", "a", 4, "a", 2, 1])
# {"a"=>3, 1=>2, 2=>2}

p [1, 2, "Thanks", "You're welcome", "Thanks", 
  "You're welcome", "Thanks", "You're welcome"].dup_hash
# {"You're welcome"=>3, "Thanks"=>3}
link|improve this answer
-1 for unnecessary monkey patch. – Bob Aman Nov 19 '09 at 19:08
thx. answer now includes a non-monkey-patched version. – miku Nov 19 '09 at 19:18
No longer -1, but seriously... don't monkey patch unless there's just no other way to do it. – Bob Aman Nov 20 '09 at 1:19
feedback

Another version of a hash with a key for each element in your array and value for the count of each element

a = [ 1, 2, 3, 3, 4, 3]
h = Hash.new(0)
a.each { | v | h.store(v, h[v]+1) }

# h = { 3=>3, 2=>1, 1=>1, 4=>1 }
link|improve this answer
+1. More elegance - a.each {|v| h[v] +=1 } – Vikrant Chaudhary Sep 9 '11 at 18:13
feedback

Simple.

arr = [2,3,4,3,2,67,2]
repeats = arr.length - arr.uniq.length
puts repeats
link|improve this answer
Thanks! This worked well for me. I keep forgetting about uniq .... – CalebHC Mar 22 '10 at 19:16
feedback

requires 1.8.7+ for group_by

ary = %w{a b c d a e f g a h i b}
ary.group_by{|elem| elem}.select{|key,val| val.length > 1}.map{|key,val| key}
# => ["a", "b"]

with 1.9+ this can be slightly simplified because Hash#select will return a hash.

ary.group_by{|elem| elem}.select{|key,val| val.length > 1}.keys
# => ["a", "b"]
link|improve this answer
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.

link|improve this answer
feedback

To count instances of a single element use inject

array.inject(0){|count,elem| elem == value ? count+1 : count}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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