Created
December 23, 2012 20:17
-
-
Save seiffert/4365771 to your computer and use it in GitHub Desktop.
This file contains 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
FibonacciSequence := Object clone | |
FibonacciSequence cache := List clone | |
FibonacciSequence simple := method (num, | |
if (num <= 2, | |
1, | |
self calc(num) | |
) | |
) | |
FibonacciSequence calc := method (num, | |
if (self cached (num), | |
self cached (num), | |
doCache(num, self simple (num-1) + self simple (num-2)) | |
) | |
) | |
FibonacciSequence cached := method (num, | |
self cache at(num) | |
) | |
FibonacciSequence doCache := method (num, result, | |
if (self cache at(num), | |
self cache atPut(num, result), | |
self cache append(result) | |
); | |
result | |
) | |
for (i, 1, 100, | |
FibonacciSequence simple (i) println | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice, that's a really compact and still readable solution. I'm already a big fan of IO.