DDSA
Advertisement

Count ways to N'th Stair(Order does not matter)

Count ways to N'th Stair(Order does not matter).java
Java
class Solution {
    public long nthStair(int n) {
        int[] dp = new int[n + 1];

        dp[0] = 1;
        dp[1] = 1;

        for (int i = 2; i <= n; i++)
            dp[i] = 1 + Math.min(dp[i - 1], dp[i - 2]);

        return dp[n];
    }
}
Advertisement
Was this solution helpful?