Merge pull request #1688 from tlylt/tlylt-patch-1

Update 1049.最后一块石头的重量II.md
This commit is contained in:
程序员Carl 2022-10-15 14:57:28 +08:00 committed by GitHub
commit 28f3b52a82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@
是不是感觉和昨天讲解的[416. 分割等和子集](https://programmercarl.com/0416.分割等和子集.html)非常像了。
本题物品的重量为store[i]物品的价值也为store[i]。
本题物品的重量为stones[i]物品的价值也为stones[i]。
对应着01背包里的物品重量weight[i]和 物品价值value[i]。