I would like to filter this list,
l = [0,1,1,2,2]
to only leave,
[0].
I\'m struggling to do it in a \'pythoni
[x for x in the_list if the_list.count(x)==1]
Though that's still a nested loop behind the scenes.