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 fade0fb commit 2f907bfCopy full SHA for 2f907bf
solution/0000-0099/0070.Climbing Stairs/README.md
@@ -45,7 +45,7 @@
45
class Solution:
46
def climbStairs(self, n: int) -> int:
47
a, b = 0, 1
48
- for i in range(n):
+ for _ in range(n):
49
a, b = b, a + b
50
return b
51
```
solution/0000-0099/0070.Climbing Stairs/README_EN.md
@@ -54,7 +54,7 @@
54
55
56
57
58
59
60
solution/0000-0099/0070.Climbing Stairs/Solution.py
@@ -1,6 +1,6 @@
1
2
3
4
5
6
- return b
+ return b
0 commit comments