2019-02-13 algorithm leetcode -climbStairs Leetcode题解之 —— 爬楼梯 思路 动态规划 最后一阶 = 倒数第一 + 1 || 倒数第二 + 2 题解 123456789101112131415/** * @param {number} n * @return {number} */var climbStairs = function(n) { const cache = [0, 1, 2]; let count = 3; while (count <= n) { cache[count] = cache[count - 1] + cache[count - 2]; count++; } return cache[n];}; 作者 : zhaoyang Duan 地址 : https://ddzy.github.io/blog/2019/02/13/leetcode-climbStairs/ 来源 : https://ddzy.github.io/blog 著作权归作者所有,转载请联系作者获得授权。