Skip to content

Instantly share code, notes, and snippets.

@cowboymathu
Created October 25, 2011 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cowboymathu/1311490 to your computer and use it in GitHub Desktop.
Save cowboymathu/1311490 to your computer and use it in GitHub Desktop.
Count array elements
arr = [1,2,3,4,5,3,4,5,2,3,3,4]
arr.inject(Hash.new(0)) { |h, e| h[e] += 1 ; h }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment