I just read the page over here: Get unique combinations of elements from a python list
The solution approved works...
... But it works only with "small" lists (100 elements, for example).
I have a "big" list of strings (1 million of elements) and i get the infamous "MemoryError"
exception.
What is the best way to get unique combos on very large lists?
Thanks in advance