diff --git a/problems/0070.爬楼梯完全背包版本.md b/problems/0070.爬楼梯完全背包版本.md index fa8ad193..5c8270b6 100644 --- a/problems/0070.爬楼梯完全背包版本.md +++ b/problems/0070.爬楼梯完全背包版本.md @@ -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 {