Merge pull request #382 from LiangDazhu/patch-29

Update 0070.爬楼梯完全背包版本.md
This commit is contained in:
程序员Carl
2021-06-12 16:25:58 +08:00
committed by GitHub

View File

@ -147,6 +147,7 @@ class Solution {
Python Python
```python3 ```python3
class Solution: class Solution:
def climbStairs(self, n: int) -> int: def climbStairs(self, n: int) -> int:
@ -163,8 +164,6 @@ class Solution:
``` ```
Go Go
```go ```go
func climbStairs(n int) int { func climbStairs(n int) int {