Skip to content

Commit e7d4234

Browse files
committed
climbing-stairs solution 개행문자추가
1 parent abda699 commit e7d4234

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)