• Where to put answer?

Question related to mission Non-unique Elements

 

list =[6,5,2,8,6,2] print([x for x in list if list.count(x) > 1])

This would work. Mike