Skip to content
Snippets Groups Projects
Select Git revision
  • 54d37d87d2ded966e0352248b3c32af6324f2268
  • main default protected
  • variant
3 results

FirefighterBoard.java

Blame
  • 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;
        }
    }