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

File Factorial_Recursion.py

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

Source from the content-addressed store, hash-verified

1def fact(n = 5):
2 if n < 2:
3 return 1
4 else:

Callers

nothing calls this directly

Calls 1

factFunction · 0.85

Tested by

no test coverage detected