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