Skip to content

Instantly share code, notes, and snippets.

@tenderlove
Created December 31, 2008 23:21
Show Gist options
  • Save tenderlove/42144 to your computer and use it in GitHub Desktop.
Save tenderlove/42144 to your computer and use it in GitHub Desktop.
####
# How online advertising happens
#
# all_the_fibonacci_numbers_in_one_hash contains all of the fibonacci numbers
# in one hash.
all_the_fibonacci_numbers_in_one_hash = Hash.new { |h,k|
h[k] = k < 2 ? k : h[k - 1] + h[k - 2]
}
0.upto(10) do |i|
puts all_the_fibonacci_numbers_in_one_hash[i]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment