Skip to content

Instantly share code, notes, and snippets.

@koduki
Created April 5, 2009 07:02
Show Gist options
  • Save koduki/90394 to your computer and use it in GitHub Desktop.
Save koduki/90394 to your computer and use it in GitHub Desktop.
@cache = {}
def fib(n)
if @cache.has_key? n
@cache[n]
else
r = (n == 0) ? 1:
(n == 1) ? 1:
fib(n-1) + fib(n-2)
@cache[n] = r
r
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment