Skip to content

Commit a90b54b

Browse files
Update 0509 - Fibonacci Numbers
1 parent 2da2ca9 commit a90b54b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsa-solutions/lc-solutions/0500-0599/0509-Fibonacci-Numbers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The Fibonacci numbers, commonly denoted F(n), form a sequence, called the Fibona
2121

2222
- F(0) = 0
2323
- F(1) = 1
24-
- F(n) = F(n-1) + F(n-2) for n > 1
24+
- F(n) = F(n-1) + F(n-2) for n > 1
2525

2626
Given an integer n, calculate F(n).
2727

0 commit comments

Comments
 (0)