Merge pull request #2018 from ZerenZhang2022/patch-26

Update 20210204动规周末总结.md
This commit is contained in:
程序员Carl 2023-04-24 09:35:07 +08:00 committed by GitHub
commit 89eb387176
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ public:
**这也体现了刷题顺序的重要性**。
先遍历背包,遍历物品:
先遍历背包,遍历物品:
```CPP
// 版本一
@ -165,7 +165,7 @@ public:
};
```
先遍历物品,遍历背包:
先遍历物品,遍历背包:
```CPP
// 版本二