Skip to content

Commit 6e9b6df

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

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

climbing-stairs/yyyyyyyyyKim.py

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

12-
return b
13-
12+
return b

0 commit comments

Comments
 (0)