Update problems/背包理论基础01背包-2.md

This commit is contained in:
fwqaaq
2023-04-28 18:51:38 +08:00
committed by GitHub
parent e6ad637e64
commit d2650cc436

View File

@ -429,7 +429,7 @@ impl Solution {
fn test_wei_bag_problem2() { fn test_wei_bag_problem2() {
println!( println!(
"{}", "{}",
Solution::wei_bag_problem1(vec![1, 3, 4], vec![15, 20, 30], 4) Solution::wei_bag_problem2(vec![1, 3, 4], vec![15, 20, 30], 4)
); );
} }
``` ```