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 6e9b6df commit 13977bcCopy full SHA for 13977bc
climbing-stairs/yyyyyyyyyKim.py
@@ -9,4 +9,5 @@ def climbStairs(self, n: int) -> int:
9
for i in range(3,n+1):
10
a, b = b, a+b
11
12
- return b
+ return b
13
+
0 commit comments