Update 20210204动规周末总结.md

修改错别字:
原为:先遍历物品,在遍历背包
改为:先遍历物品,再遍历背包
This commit is contained in:
ZerenZhang2022
2023-04-09 17:25:58 -04:00
committed by GitHub
parent ba03a17e68
commit 185f6df9d8

View File

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