I'm trying to assemble a calculation that takes a known number of items (30) and places them into a set number of containers (3) and to calculate that items 1-10 go into container 1, 11-20 go into container 2 and 21-30 go into container 3... over time the number of items will grow infinitely and the number of containers will equal #items/10 (rounded up to the next whole number, so that 35 items would have 4 containers)... Known = # items Known = # containers Items must go into specific containers (items 1-10 must go into container 1, 11-20 into contain 2 and so on)
2026-03-27 00:54:51.1774572891
Sorting items to containers
168 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
This is bucket sort.