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
```python3
class Solution:
def climbStairs(self, n: int) -> int:
@ -163,8 +164,6 @@ class Solution:
```
Go
```go
func climbStairs(n int) int {