70. Climbing Stairs - Easy 前往題目 想法 在想要用dp,但是關係式想不出來 思路 最後兩個一定都是1種方法能走到 以他們為基準向前就能推出答案 下面i還是從0開始因為沒有差別,沒有用到i Code class Solution { public int climbStairs(int n) { // Pointer int one = 1, two = 1; for (int i = 0; i < n - 1; ++i) { int temp = one; one += two; // Add one and two two = temp; // Move the pointer } return one; } } Leetcode > Easy #Leetcode #心得 #Math #Dynamic Programming #Memoization 70. Climbing Stairs - Easy https://f88083.github.io/2024/01/21/70-Climbing-Stairs-Easy/ 作者 Simon Lai 發布於 2024年1月21日 許可協議 572. Subtree of Another Tree - Easy 上一篇 238. Product of Array Except Self - Medium 下一篇 Please enable JavaScript to view the comments