Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/E869120/math-algorithm-book
/ Code_3_06_3.py
File
Code_3_06_3.py
codes/python/Code_3_06_3.py:None–None ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
def
func(N):
2
if
N == 1:
3
return
1
# このような場合分けすべきケースを「ベースケース」といいます
4
return
func(N - 1) * N
Callers
nothing calls this directly
Calls
1
func
Function · 0.70
Tested by
no test coverage detected