We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97a6116 commit 4392982Copy full SHA for 4392982
fibonacci.py
@@ -0,0 +1,6 @@
1
+def fibonacci_of(n):
2
+ if n in {0, 1}:
3
+ return n
4
+ return fibonacci_of(n - 1) + fibonacci_of(n - 2)
5
+for i in range(1,100):
6
+ print(fibonacci_of(i))
0 commit comments