Skip to content

Instantly share code, notes, and snippets.

@Nikamura
Last active August 29, 2015 14:13
Show Gist options
  • Save Nikamura/3ae95f4ac761e0f465aa to your computer and use it in GitHub Desktop.
Save Nikamura/3ae95f4ac761e0f465aa to your computer and use it in GitHub Desktop.
@cache = []
def fib(x)
return @cache[x] if @cache[x]
return 0 if x == 0
return 1 if x == 1
@cache[x] = fib(x - 1) + fib(x - 2)
end
p fib(3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment