https://leetcode.com/problems/fibonacci-number/ Fibonacci Number - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 1. 재귀 구조 브루트 포스 class Solution: def fib(self, n: int) -> int: if N int: if n int: self.dp[1]=1 for i in range(2,n+1): self.dp[i] = self.dp[i-1] + self.dp[i-2] return s..