Ask Your Question
0

How can I eliminate any repeated elements in an array?

asked 2022-09-26 11:00:00 +0000

djk gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-06-16 22:00:00 +0000

huitzilopochtli gravatar image

One way to eliminate repeated elements in an array in Python is:

  1. Convert the array to a set, which automatically eliminates duplicates.
  2. Convert the set back to an array, if needed.

Here is an example:

arr = [1, 2, 3, 2, 4, 3, 5]
arr_set = set(arr)
arr = list(arr_set)
print(arr)

Output: [1, 2, 3, 4, 5]

Alternatively, you can use a loop to manually remove duplicates:

arr = [1, 2, 3, 2, 4, 3, 5]
new_arr = []
for elem in arr:
    if elem not in new_arr:
        new_arr.append(elem)
print(new_arr)

Output: [1, 2, 3, 4, 5]

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-09-26 11:00:00 +0000

Seen: 8 times

Last updated: Jun 16 '21