[LeetCode] 70. Climbing Stairs

김민우·2022년 12월 12일
0

알고리즘

목록 보기
84/189

- Problem

70. Climbing Stairs

- 내 풀이

class Solution:
    def climbStairs(self, n: int) -> int:
        a, b = 0, 1

        for i in range(n):
            a, b = b, a+b

        return b

- 결과

profile
Pay it forward.

0개의 댓글