Hello,
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 'pythonic' way :o) Is it possible without nested loops?
|
2
|
|||||
|
|
|
|
||
|
|
|
|
I think the actual timings are kind of interesting: Alex' answer:
Mine:
sepp2k's O(n**2) version, to demonstrate why compexity matters ;-)
Roberto's + sorted:
mhawke's:
I like the last, clever and fast ;-) |
||
|
|
|
|
In the same spirit as Alex's solution you can use a Counter/multiset (built in 2.7, recipe compatible from 2.5 and above) to do the same thing:
|
||
|
|
|
|
Here's another dictionary oriented way:
|
||||||
|
|
|
|
|||
|
|
|
Something like
should work. I do not know about its complexity, though. |
||||||
|
|
|
|
||||||
|
|
|
Though that's still a nested loop behind the scenes. |
||||||||||||
|
|
|
You'll need two loops (or equivalently a loop and a listcomp, like below), but not nested ones:
This solution assumes that the list items are hashable, that is, that they're usable as indices into dicts, members of sets, etc. The OP indicates they care about object IDENTITY and not VALUE (so for example two sublists both worth Mutable objects (lists, dicts, sets, ...) are typically not hashable and therefore cannot be used in such ways. User-defined objects are by default hashable (with If list L's items are not hashable, but are comparable for inequality (and therefore sortable), and you don't care about their order within the list, you can perform the task in time Other approaches, of gradually decreasing perfomance and increasing generality, can deal with unhashable sortables when you DO care about the list's original order (make a sorted copy and in a second loop check out repetitions on it with the help of If the OP can clarify which case applies to his specific problem I'll be glad to help (and in particular, if the objects in his are ARE hashable, the code I've already given above should suffice;-). |
||||||||||||||
|