-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathClimbingStairs.java
More file actions
38 lines (31 loc) · 845 Bytes
/
ClimbingStairs.java
File metadata and controls
38 lines (31 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
You are climbing a stair case. It takes n steps to reach to the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
*/
class Solution {
public int climbStairs(int n) {
if (n <= 2)
return n;
int[] dp = new int[n];
dp[0] = 1;
dp[1] = 2;
for (int i = 2; i < n; i++) {
dp[i] = dp[i - 1] + dp[i - 2];
}
return dp[n - 1];
}
}
/************************************************************************************************/
public class Solution {
public int climbStairs(int n) {
int p = 1;
int q = 1;
int temp = 1;
for (int i = 2; i <= n; i++) {
temp = q;
q = p + q;
p = temp;
}
return q;
}
}