Easy Problems
509. Fibonacci Number
Problem
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 onces, starting from 0
and 1
. That is,
Given n
, calculate F(n)
.
Example 1:
Example 2:
Example 3:
Contrains:
0 <= n <= 30
Solutions
Last Update: 15:04 - 16 April 2024
Math
Dynamic Programming
Memoization
Recursion