Skip to content

Commit 0711ef4

Browse files
committed
add inline
1 parent 3ea1958 commit 0711ef4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

climbing-stairs/sora0319.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ public int climbStairs(int n) {
3838
// 2 : [1] + 1, 2 1+1 2 2개
3939
// 3 : [2-1] + 1, [2-2] + 1, [1] + 2 1+1+1 2+1 1+2 3개
4040
// 4 : [3-1] + 1, [3-2] + 1, [3-3] + 1 1+1+1+1 2+1+1 1+2+1 1+1+2 2+2 5개
41-
// 5 : 1+1+1+1+1 2+1+1+1 1+2+1+1 1+1+2+1 1+1+1+2 2+2+1 2+1+2 1+2+2 8개
41+
// 5 : 1+1+1+1+1 2+1+1+1 1+2+1+1 1+1+2+1 1+1+1+2 2+2+1 2+1+2 1+2+2 8개
42+

0 commit comments

Comments
 (0)