Remove empty lines in Knapsack.java

This commit is contained in:
Corentin Le Molgat
2019-05-14 09:44:13 +02:00
parent d7a33542a2
commit f4dc003165

View File

@@ -45,13 +45,11 @@ public class Knapsack {
// [START solve]
solver.init(values, weights, capacities);
final long computedValue = solver.solve();
// [END solve]
// [START print_solution]
System.out.println("Solving knapsack with " + values.length + " items");
System.out.println("Optimal Value = " + computedValue);
// [END print_solution]
}