백준 10872번 python 풀이 - 팩토리얼
문제 링크
해결책
1
2
3
4
5
6
7
8
9
10
11
12
N = int(input())
def factorial(n):
if n == 0:
return 1
elif n == 1:
return 1
return n * factorial(n - 1)
print(factorial(N))
주석으로 달 설명
그리 어렵게 진행하지 않았다. 단순한 재귀함수로 구현 완료하였다.
This post is licensed under CC BY 4.0 by the author.