There is a list of numbers from 1 to 190.
AllList="1,2,3,4,5,6,7,8,9,.....,187,188,189,190"
There is a collection of sets of these values:
List(1)="3,5,6,7,9"
List(2)="1,2,6,9"
List(3)="5,8,9"
List(4)="2,4,6,8"
List(5)="4,7,9"
What is an elegant approach in Object Script to pick the least number of list items:
That together would cover as many numbers as possible from the AllList.
Interested in best coverage over efficiency.