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