Skip to content

Instantly share code, notes, and snippets.

@levent
Created October 4, 2010 14:05
Show Gist options
  • Select an option

  • Save levent/609731 to your computer and use it in GitHub Desktop.

Select an option

Save levent/609731 to your computer and use it in GitHub Desktop.
array.inject(Hash.new(0)) { |hash, item|
hash[item] += 1
hash }.sort_by { |k, v| v }.reverse.map { |k, v| "#{k}:#{v}" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment