Skip to content

Commit ecc9a93

Browse files
committed
Update do-heewan.py
1 parent ff3372c commit ecc9a93

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

climbing-stairs/do-heewan.py

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

1010
return dp[n]
11-
12-

0 commit comments

Comments
 (0)