Skip to content

fix a typo error in fibo_speed.rst #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Iamjack
Copy link

@Iamjack Iamjack commented Dec 13, 2017

def fib_cached(n, cache={}):
if n < 2:
return n
try:
val = cache[n]
except KeyError:
val = fib(n-2) + fib(n-1)
cache[n] = val
return val

Maybe there is a typo error in function body :
val = fib(n-2) + fib(n-1)
should be like this:
val = fib_cached(n-2,cache) + fib_cached(n-1,cache)

def fib_cached(n, cache={}):
    if n < 2:
        return n
    try:
        val = cache[n]
    except KeyError:
        val = fib(n-2) + fib(n-1)
        cache[n] = val
    return val

Maybe there is a typo error  in  function body :
val = fib(n-2) + fib(n-1)
should be like this:
val = fib_cached(n-2,cache) + fib_cached(n-1,cache)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant