메모리 누수 다소 해결 Fixes #2 EBPSO 의 구현 부분의 문제가 있어 수정중
@@ -0,0 +1,11 @@
# 반복문을 사용해서 자동 생성하는 python 코드
def pibonachi(n):
if n <= 1:
return n
else:
return pibonachi(n - 1) + pibonachi(n - 2)
print(pibonachi(10))
The note is not visible to the blocked user.