Skip to content

Commit 68fc9a2

Browse files
committed
climbing-stairs solution
1 parent 597919b commit 68fc9a2

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

climbing-stairs/hyeri0903.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ def climbStairs(self, n: int) -> int:
1515
dp[i] = dp[i-1] + dp[i-2]
1616

1717
return dp[n]
18-

0 commit comments

Comments
 (0)