Merge pull request #1882 from YuhanSun/patch-1

Update 0416.分割等和子集.md
This commit is contained in:
程序员Carl 2023-02-04 09:44:15 +08:00 committed by GitHub
commit c40d4cc077
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@
有录友可能想,那还有装不满的时候?
拿输入数组 [1, 5, 11, 5]距离 dp[7] 只能等于 6因为 只能放进 1 和 5。
拿输入数组 [1, 5, 11, 5]举例 dp[7] 只能等于 6因为 只能放进 1 和 5。
而dp[6] 就可以等于6了放进1 和 5那么dp[6] == 6说明背包装满了。