Skip to content

Commit f697bda

Browse files
tech(recursion/nth-fibonacci): fibonacci
1 parent 1c5346b commit f697bda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recursion-nth-fibonacci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def getNthFib(n):
1111
if n == 1:
1212
return defaultArray[0]
1313
else:
14-
return defaultArray[1]
14+
return defaultArray[1]

0 commit comments

Comments
 (0)