MCPcopy Create free account
hub / github.com/E869120/math-algorithm-book / Code_3_06_6.py

File Code_3_06_6.py

codes/python/Code_3_06_6.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1def func(N):
2 # func(N) → func(N-1) → ... → func(0) → func(-1) → func(-2) → ... と無限に呼び出されるので、プログラムが正常に動作しない
3 return func(N - 1) * N
4

Callers

nothing calls this directly

Calls 1

funcFunction · 0.70

Tested by

no test coverage detected