DHL
Log in om je oplossingen te testen.
import java.util.ArrayList;
public class Sorteermachine
{
private ArrayList<Pakje> pakjes;
private double maxGewicht;
public Sorteermachine(double maxGewicht)
{
pakjes = new ArrayList<Pakje> ();
this.maxGewicht = maxGewicht;
}
public int aantalPakjes()
{
return pakjes.size();
}
}
Je kunt zo vaak indienen als je wenst. Er wordt enkel rekening gehouden met je laatst ingediende oplossing.
Log in om je oplossingen te testen.