কম্পিউটার

পাইথন প্রোগ্রাম একটি তালিকা থেকে ডুপ্লিকেট উপাদান অপসারণ?


একটি তালিকা ডুপ্লিকেট উপাদান সহ দেওয়া হয়েছে, আমাদের কাজ হল অন্য একটি তালিকা তৈরি করা যাতে সদৃশ ছাড়া উপাদান রয়েছে৷

উদাহরণ

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]

  1. পাইথন - তালিকা থেকে ডুপ্লিকেট অপসারণের উপায়

  2. পাইথন প্রোগ্রাম পূর্ণসংখ্যার তালিকা থেকে সদৃশ মুদ্রণ করতে?

  3. একটি তালিকা থেকে N বৃহত্তম উপাদান খুঁজে পেতে পাইথন প্রোগ্রাম

  4. পাইথনে সূচক দ্বারা একটি তালিকা থেকে কীভাবে একটি উপাদান সরাতে হয়?