The blog ofJonathan Pepin

Playing with Hash#sort

2012-09-11

Sorting a Hash I wanted to understand what happened under the hood when hash.sort is called; ruby hash.sort { |a, b| b[1] <=> a[1] } If you can't answer, you might want to read. *** First, let's begin...