Select Git revision
FirefighterBoard.java
Forked from
COUETOUX Basile / FirefighterStarter
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;
}
}