Climbing Stairs - LeetCode

PHOTO EMBED

Wed Jun 05 2024 07:16:25 GMT+0000 (Coordinated Universal Time)

Saved by @devdutt

class Solution {
public:
    int climbStairs(int n) {
        if (n == 0 || n == 1) {
            return 1;
        }

        vector<int> dp(n+1);
        dp[0] = dp[1] = 1;
        
        for (int i = 2; i <= n; i++) {
            dp[i] = dp[i-1] + dp[i-2];
        }
        return dp[n];
    }
};
content_copyCOPY

https://leetcode.com/problems/climbing-stairs/