Return the `20`th Fibonacci number (0-indexed: F(0)=0, F(1)=1). Variant **#15**.
Example 1
Input: n = 20
Output: 6765
Constraints
Acceptance: 77% · Topics: math, dynamic-programming, recursion
← All practice problems