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...
Top Ford Motor Data Engineer interview questions & answers
Popular interview questions of Data Engineer
Top HR questions asked in Ford Motor Data Engineer
Stay ahead in your career. Get AmbitionBox app
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
Get AmbitionBox app