Skip to content

Instantly share code, notes, and snippets.

@kennyp
Created February 13, 2013 20:36
Show Gist options
  • Save kennyp/4948001 to your computer and use it in GitHub Desktop.
Save kennyp/4948001 to your computer and use it in GitHub Desktop.
h = Hash.new do |h,k|
l = h.keys.select {|i| i < k}.max
h[l]
end
h[1] = :foo
h[5] = :bar
h[3] # => :foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment