Skip to content

Instantly share code, notes, and snippets.

@kenmazaika
Created January 22, 2016 22:37
Show Gist options
  • Save kenmazaika/5b7f3a16891b26eef610 to your computer and use it in GitHub Desktop.
Save kenmazaika/5b7f3a16891b26eef610 to your computer and use it in GitHub Desktop.
values = [1,1,2,4,2,1,9,99, 0]
counts = values.inject({}) do |acc, value|
acc[value] ||= 0
acc[value] += 1
acc
end
puts counts.inspect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment