Filtering lists
list, python, unique
Solution
Cast foo to a set, if you don't care about element order.
Problem
I want to filter repeated elements in my list for instance ``` foo = ['a','b','c','a','b','d','a','d'] ``` I am only interested with: ``` ['a','b','c','d'] ``` What would be the efficient way to do achieve this ? Cheers