pamelagorilla
New Member
Working with PHP for this.From a given set of items, each with its own weight, I need to automatically calculate the most effective way to package the items into 100 lbs packages (max package weight of 100 lbs is static, but can be changed in the future). A single package cannot exceed the maximum specified.As an example, I have 5 items - with a total weight of 254 lbs:
- Item 1 -> 51 lbs
- Item 2 -> 28 lbs
- Item 3 -> 73 lbs
- Item 4 -> 51 lbs
- Item 5 -> 51 lbs