...

/

Challenge: Find Duplicates in a List With No Repetition

Challenge: Find Duplicates in a List With No Repetition

Write a function to find the duplicates in a list with no repetition, in the most efficient way.

Problem statement

Given a list of integers, find all the duplicates that exist in that list.

Input

A list of duplicate integers

...