Hi,
I have a list of lists containing several elements. I would like to be able to go through every list and remove the elements that are already contained in the previous lists. So for example:
List with Index 0 - Does not get affected
List with Index 1 - All elements that are already in list with index 0 get removed
List with Index 2 - All elements that are already in lists with indexes 0 and 1 get removed
And so on…
Do I need python for this?