Challenge 6: 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
...