I have a large 2d list that has duplicates in some sublist. I would like to return only duplicates. For instance,
Df =[[2,3,5,20],[5,10,20,10],[4,13,15,15,17,34,17],[33,34,15,21]]
I would like my results like this. If possible
Result = [[5,10,10,20],[4,13,15,15,17,17,34]]