I have a certain number (m) of lists of variable length (the lists don't have always the same length), for example m=4
List1: {1,2,3,4,5}
List2: {6,7}
List3: {8,9,10}
List4: {11,12,13,14,15,16}
I would like to realize a method like this:
method(list1, list2, list3, list4, n)
where n
is the n-wise combinations to take.
For example n=2 all pairs, n=3 all triples.. as we can do with NUnit.
Is there a method like this in the framework?
All lists are strings lists
Thanks.