[["hello", "bye", "start"], ["bye", "start", "hello"], ["john", "riya", "tom"], ["riya","john", "tom"].....]
I have got a list like this. I want to remove duplicate elements from nested list in Python where elements should be in any order.
Output should be:-
[["hello", "bye", "start"], ["john", "riya", "tom"]]
3 strings should be present only once in any list. How to achieve this?