First time here? Check out the FAQ!

Ask Your Question
1

How to eliminate duplicates in a list preserving previous order

asked 2 years ago

logomath gravatar image

updated 2 years ago

Ex: if A=[1,5,3,3,4,9,9,9,1] I want to obtain [1,5,3,4,9,1] in a simple way

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 2 years ago

Max Alekseyev gravatar image

For example via list comprehension:

B = [A[i] for i in range(len(A)) if i==0 or A[i]!=A[i-1]]
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2 years ago

Seen: 400 times

Last updated: Oct 26 '22