509. Fibonacci Number
🟩 Easy
The Fibonacci numbers, commonly denoted F(n)
form a sequence, called the Fibonacci sequence, such that each number is the sum of the two preceding ones, starting from 0
and 1
. That is,
Given N
, calculate F(N)
.
Dynamic Programming
Memoization: Store computed value in memory.
Complexity
Time complexity: O(n)
Space complexity: O(n)
Code
Last updated
Was this helpful?