I have 220 items to fill a list of lists with, where, the outer list consists of 45 inner lists.
Each of the 45 inner lists can have:
- Maximum of 10 items.
- Can be empty.
So, the list of lists can have up to a maximum of 450 items, but we only need to fill 220 spots and the rest will be empty.
- The order of the items inside the inner list does not matter.
- An item can only be used once throughout the all 45 lists.
- The order of the inner lists matters. [[3,4], [1,2]] is not equal [[1,2], [3,4]]
E.g:
[[1,2],[9,7,55,66,77,99], [], [23,42,51,11], ...]