Created
December 31, 2008 23:21
-
-
Save tenderlove/42144 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### | |
# 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