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