We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b83395 commit e180facCopy full SHA for e180fac
1 file changed
8/2.py
@@ -1,7 +1,7 @@
1
# 한 번 계산된 결과를 메모이제이션(Memoization)하기 위한 리스트 초기화
2
d = [0] * 100
3
4
-# 피보나치 함수(Fibonacci Function)를 재귀적으로 구현 (다이나믹
+# 피보나치 함수(Fibonacci Function)를 재귀하뭇로 구현 (다이나믹 프로그래밍)
5
def fibo(x):
6
# 종료 조건(1 혹은 2일 때 0을 반환)
7
if x == 1 or x == 2:
0 commit comments