MCPcopy Create free account
hub / github.com/BeeBombshell/Python-DSA / Fibonacci_Series.py

File Fibonacci_Series.py

Recursion/Fibonacci_Series.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1def fib(n):
2 if n == 0:
3 return 0
4 elif n == 1:

Callers

nothing calls this directly

Calls 1

fibFunction · 0.85

Tested by

no test coverage detected