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