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 a69cdb9 commit 6f4f48cCopy full SHA for 6f4f48c
climbing-stairs/deepInTheWoodz.py
@@ -8,4 +8,3 @@ def climbStairs(self, n: int) -> int:
8
dp[i] = dp[i-1] + dp[i-2]
9
10
return dp[n]
11
-
0 commit comments