파이썬 피보나치 less than 1 minute read class Solution: def fib(self, N: int) -> int: if N == 0 or N == 1: return N dp = [0,1] for i in ...