1137. N-th Tribonacci Number
Easy | DP | 24 ms (94.39%), 14.2 MB (43.64%)
Input: n = 4
Output: 4
Explanation:
T_3 = 0 + 1 + 1 = 2
T_4 = 1 + 1 + 2 = 4
Input: n = 25
Output: 1389537class Solution:
def tribonacci(self, n: int) -> int:
# (base case)
if n == 0: return 0
if n == 1: return 1
if n == 2: return 1
# ==================================================
# Dynamic Programming =
# ==================================================
# time : O(n)
# space : O(1)
first, second, third = 0, 1, 1
for i in range(n - 2):
ans = first + second + third
first = second
second = third
third = ans
return thirdLast updated