Skip to content

Commit 787e651

Browse files
committed
Update do-heewan.py
1 parent 13a5cdf commit 787e651

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

climbing-stairs/do-heewan.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ def climbStairs(self, n: int) -> int:
77
for i in range(3, n+1):
88
dp[i] = dp[i-1] + dp[i-2]
99

10-
return dp[n]
10+
return dp[n]
11+

0 commit comments

Comments
 (0)