let's say I have a master array of 365 dates in YYYYMMDD format. I want to create, for the sake of this example, 3 different lists that are unique, but also use up the entirety of the 365 dates.
For an overall example, let's take the year of 2017. I would like to create 3 lists from the 365 days that are mutually exclusive and collectively exhaustive. In other words, none of the dates in array1 will be in array2 nor array3, and the dates in array2 will not be in array3. Array1 will have a length of 300, array2 will have a length of 64, and array3 will simply be a length of 1.
I know this can be achieved with lists and sets, and potentially by including 'not in', but I have been going in circles with nothing working. What would be the best solution for a problem like this?