https://leetcode.com/problems/climbing-stairs/ Climbing Stairs - 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 정수로 주어진 n개의 계단을 1계단 또는 2계단씩 올라가려고 한다. 몇 가지 방법으로 올라갈 수 있는지 구하는 문제다. 먼저 n개의 계단을 올라갈 수 있는 방법은 2가지가 있다. 첫번째, 1개의 계단을 오르고 N-1계단을 올라가는 방법 두번째, 2개의 계단을 오르고 N-2계단을 올라가는 방법 T(n) ..