Skip to content

Commit b792864

Browse files
climbing stairs solution
1 parent 236e5ea commit b792864

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

climbing-stairs/jaejeong1.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
class SolutionClimbStairs {
22

3-
public static void main(String[] args) {
4-
SolutionClimbStairs s = new SolutionClimbStairs();
5-
System.out.println(s.climbStairs(3));
6-
}
7-
83
public int climbStairs(int n) {
94
if (n == 1) {
105
return 1;

0 commit comments

Comments
 (0)