We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 584b06b commit 06fe8eaCopy full SHA for 06fe8ea
equivalent_fib.py
@@ -3,5 +3,5 @@ def fib(n):
3
"Calculate the Fibonacci numbers (in Python)."
4
if n <= 1:
5
return n
6
- else
+ else:
7
return fib(n-1) + fib(n-2)
0 commit comments