Skip to content

Instantly share code, notes, and snippets.

@Alfreddd
Created November 23, 2011 10:16
Show Gist options
  • Save Alfreddd/1388338 to your computer and use it in GitHub Desktop.
Save Alfreddd/1388338 to your computer and use it in GitHub Desktop.
Find duplicates in Array
# http://snippets.dzone.com/posts/show/4148
class Array
def find_dups
inject(Hash.new(0)) { |h,e| h[e] += 1; h }.select { |k,v| v > 1 }.collect { |x| x.first }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment