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