-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathClimbingStairs.java
More file actions
36 lines (30 loc) · 985 Bytes
/
Copy pathClimbingStairs.java
File metadata and controls
36 lines (30 loc) · 985 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?
* Note: Given n will be a positive integer.
* <p>
* Accepted. Recursion will exceed the time limit.
*/
public class ClimbingStairs {
public int climbStairs(int n) {
if (n <= 0) return 0;
if (n == 1) return 1;
if (n == 2) return 2;
int[] results = new int[n];
results[0] = 1;
results[1] = 2;
for (int i = 2; i < n; i++) {
results[i] = results[i - 1] + results[i - 2];
}
return results[n - 1];
}
public static void main(String[] args) {
ClimbingStairs cs = new ClimbingStairs();
// Expected: 1
System.out.println(cs.climbStairs(1));
// Expected: 3
System.out.println(cs.climbStairs(3));
// Expected: 8
System.out.println(cs.climbStairs(5));
}
}