Skip to content

Instantly share code, notes, and snippets.

@JakeAustwick
Created December 15, 2011 22:35
Show Gist options
  • Save JakeAustwick/1483262 to your computer and use it in GitHub Desktop.
Save JakeAustwick/1483262 to your computer and use it in GitHub Desktop.
Ruby Dups
def duplicates(list)
list.group_by { |e| e }.select { |k,v| v.size > 1 }.map(&:first)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment