Duplicate elements in list using python

AnswerBot
11mo

Use Python to find duplicate elements in a list.

  • Iterate through the list and use a dictionary to store elements and their counts.

  • Identify elements with counts greater than 1 as duplicates.

  • Return a lis...read more

staticmasala
6mo
l=[1,2,2,3,4,5] l1=[] def duplicate(l): for i in l: if l.count(i)>1 and i not in l1: l1.append(i) return l1 print(duplicate(l))
Help your peers!
Add answer anonymously...
Ford Motor Data Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter