https://programmers.co.kr/learn/courses/30/lessons/12900
def solution(n):
a,b =1,2
for i in range(n-1):
a,b = b, a+b
return a%1000000007
'''
n(1) = 1
n(2) = 2
n(3) = 3
n(4) = 5
n(5) = n(3) + n(4)
'''
'Programming > Programmers' 카테고리의 다른 글
[프로그래머스] 숫자 문자열과 영단어(Python) (0) | 2021.09.27 |
---|---|
[프로그래머스] 등굣길(Python) (0) | 2021.08.12 |
[프로그래머스] 이중우선순위큐(Python) (0) | 2021.08.12 |
[프로그래머스] 정수삼각형(Python) (0) | 2021.08.12 |
[프로그래머스] 디스크 컨트롤러(Python) (0) | 2021.08.12 |
댓글