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