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 13a5cdf commit 787e651Copy full SHA for 787e651
climbing-stairs/do-heewan.py
@@ -7,4 +7,5 @@ def climbStairs(self, n: int) -> int:
7
for i in range(3, n+1):
8
dp[i] = dp[i-1] + dp[i-2]
9
10
- return dp[n]
+ return dp[n]
11
+
0 commit comments