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