Skip to content

Instantly share code, notes, and snippets.

@kwilczynski
Created August 17, 2010 15:03
Show Gist options
  • Save kwilczynski/530285 to your computer and use it in GitHub Desktop.
Save kwilczynski/530285 to your computer and use it in GitHub Desktop.
(main):001:0> {:a => 1, :b => 10, :z => 5}.values.max
=> 10
(main):002:0> {:a => 1, :b => 10, :z => 5}.max { |a, b| a[1] <=> b[1] }
=> [:b, 10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment