Select Git revision
Forked from
L2algo / knapsack
Source project has a limited visibility.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Item.java 159 B
public class Item {
double weight,value;
public Item(double weight, double value) {
this.weight = weight;
this.value = value;
}
}