Skip to content

Commit 13977bc

Browse files
committed
climbing-stairs solution 개행문자
1 parent 6e9b6df commit 13977bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

climbing-stairs/yyyyyyyyyKim.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ def climbStairs(self, n: int) -> int:
99
for i in range(3,n+1):
1010
a, b = b, a+b
1111

12-
return b
12+
return b
13+

0 commit comments

Comments
 (0)