Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
def
fact(n = 5):
2
if
n < 2:
3
return
1
4
else
:
Callers
nothing calls this directly
Calls
1
fact
Function · 0.85
Tested by
no test coverage detected