⬅︎ Back to Fastest way to uniqify a list in Python
Isn't that what f6 does, apart from the final conversion to a list again?
Keep in mind you can also use: >>> lst = [1, 1, 3, 4, 4, 5, 6, 7, 6] >>> set(lst) set([1, 3, 4, 5, 6, 7])
Right. I totally missed f6()
Comment
Isn't that what f6 does, apart from the final conversion to a list again?
Parent comment
Keep in mind you can also use: >>> lst = [1, 1, 3, 4, 4, 5, 6, 7, 6] >>> set(lst) set([1, 3, 4, 5, 6, 7])
Replies
Right. I totally missed f6()