Skip to main content

🟢 剑指 Offer II 088. 爬楼梯的最少成本

LeetCode 提示

题目难度 简单

原题链接 🔗 leetcode

题解1#

class Solution {    public int minCostClimbingStairs(int[] cost) {        int n=cost.length;        for (int i=n-3; i>=0; i-=1) {            cost[i] = Math.min(cost[i+1], cost[i+2]) + cost[i];        }        return Math.min(cost[0], cost[1]);    }}