MCPcopy Create free account
hub / github.com/geekcomputers/Python / Fibonacci_sequence_recursive_sol.py

File Fibonacci_sequence_recursive_sol.py

Fibonacci_sequence_recursive_sol.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1def fib(term):
2 if term <= 1:
3 return term
4 else:

Callers

nothing calls this directly

Calls 1

fibFunction · 0.70

Tested by

no test coverage detected