Skip to content

Commit 1e85511

Browse files
committed
Update do-heewan.py
1 parent 8fb26d6 commit 1e85511

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

climbing-stairs/do-heewan.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ def climbStairs(self, n: int) -> int:
88
dp[i] = dp[i-1] + dp[i-2]
99

1010
return dp[n]
11+

0 commit comments

Comments
 (0)