Skip to content

Instantly share code, notes, and snippets.

@satoryu
Created September 7, 2011 10:51
Show Gist options
  • Save satoryu/1200271 to your computer and use it in GitHub Desktop.
Save satoryu/1200271 to your computer and use it in GitHub Desktop.
Counts the number of each elements given by ARGV. like `uniq -c`
array = ARGV.dup
p Hash[*(array.uniq.map {|a| [a, array.select {|b| a == b }.size] }.flatten)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment