mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
17 lines
397 B
C#
17 lines
397 B
C#
public class Solution {
|
|
public int MinCostClimbingStairs(int[] cost) {
|
|
int Get(int k) {
|
|
if (k < 0 || k >= cost.Length) {
|
|
return 0;
|
|
}
|
|
|
|
return cost[k];
|
|
}
|
|
|
|
for (var i = cost.Length - 1; i >= 0; --i) {
|
|
cost[i] += Math.Min(Get(i + 1), Get(i + 2));
|
|
}
|
|
|
|
return Math.Min(cost[0], cost[1]);
|
|
}
|
|
}
|