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 ff3372c commit ecc9a93Copy full SHA for ecc9a93
climbing-stairs/do-heewan.py
@@ -8,5 +8,3 @@ def climbStairs(self, n: int) -> int:
8
dp[i] = dp[i-1] + dp[i-2]
9
10
return dp[n]
11
-
12
0 commit comments