Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

โปรแกรม Python เพื่อลบองค์ประกอบที่ซ้ำกันออกจากรายการ?


รายการหนึ่งมีองค์ประกอบที่ซ้ำกัน งานของเราคือสร้างอีกรายการหนึ่งซึ่งมีองค์ประกอบที่ไม่ซ้ำกัน

ตัวอย่าง

A::[2,3,4,3,4,6,78,90]
Output::[2,3,4,6,78,90]

อัลกอริทึม

Step 1: create a list.
Step 2: create a new list which is empty.
Step 3: traverse every element in list.
Step 4: if element is not present in the list return true.
Step 5: append in the new list.
Step 6: display new list.

โค้ดตัวอย่าง

#  To remove duplicate elements
defremoveduplicateele(A):
   newlist = []
   for n in A:
      if n not in newlist:
         newlist.append(n)
   returnnewlist
# Driver Code
A=list()
n=int(input("Enter the size of the List ::"))
print("Enter the number ::")
fori in range(int(n)):
   k=int(input(""))
   A.append(int(k))
print("THE NEW LIST IS ::>",removeduplicateele(A))

ผลลัพธ์

Enter the size of the List ::5
Enter the number ::
10
20
30
20
10
THE LIST IS ::> [10, 20, 30]