Answers for "how to remove duplicate in a list"

36

python remove duplicates from list

mylist = ["a", "b", "b", "c", "a"]
mylist = sorted(set(mylist))
print(mylist)
Posted by: Guest on October-26-2020
1

python remove duplicates

word = input().split()

for i in word:
  if word.count(i) > 1:
    word.remove(i)
Posted by: Guest on February-04-2020
0

how to delete duplicated elements of a list

Set<String> set = new HashSet<>(yourList);
yourList.clear();
yourList.addAll(set);
Posted by: Guest on June-06-2021

Code answers related to "how to remove duplicate in a list"

Python Answers by Framework

Browse Popular Code Answers by Language