We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 584b06b + 06fe8ea commit e5a3bf2Copy full SHA for e5a3bf2
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