删除typo

This commit is contained in:
Logen
2023-03-06 19:50:04 -06:00
parent e7bc3d3a7e
commit aea8bee954

View File

@ -162,7 +162,7 @@ dp[j] 表示填满j包括j这么大容积的包有dp[j]种方法
有哪些来源可以推出dp[j]呢?
只要搞到nums[i]凑成dp[j]就有dp[j - nums[i]] 种方法。
只要搞到nums[i]凑成dp[j]就有dp[j - nums[i]] 种方法。
例如dp[j]j 为5