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 ec92d4d commit 969b9fbCopy full SHA for 969b9fb
climbing-stairs/jinah92.py
@@ -9,4 +9,3 @@ def climbStairs(self, n: int) -> int:
9
prev, curr = curr, prev + curr
10
11
return curr
12
-
0 commit comments