Skip to content

Instantly share code, notes, and snippets.

@teddevaal
Created September 11, 2014 09:07
Show Gist options
  • Save teddevaal/596221cdb01305a34d42 to your computer and use it in GitHub Desktop.
Save teddevaal/596221cdb01305a34d42 to your computer and use it in GitHub Desktop.
Unique records
array.uniq.map { | e | [array.count(e), e] }.select { | c, _ | c > 1 }.sort.reverse.map { | c, e | "#{e}:#{c}" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment