We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f91cd5e commit 62fc79dCopy full SHA for 62fc79d
Python/fastfibonacci.py
@@ -8,4 +8,4 @@ def fastfibonacci(i):
8
else:
9
return fastfibonacci(i-1)+fastfibonacci(i-2)
10
11
-print(Fibonacci(2))
+print(fastfibonacci(2))
0 commit comments