We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 597919b commit 68fc9a2Copy full SHA for 68fc9a2
1 file changed
climbing-stairs/hyeri0903.py
@@ -15,4 +15,3 @@ def climbStairs(self, n: int) -> int:
15
dp[i] = dp[i-1] + dp[i-2]
16
17
return dp[n]
18
-
0 commit comments