You are given a non-empty list of integers. For this task, you should return a list consisting of only the non-unique elements in this list. To do so you will need to remove all unique elements (elements which are contained in a given list only once). When solving this task, do not change the order of the list. Example: [1, 2, 3, 1, 3]
1 and 3 non-unique elements and result will be [1, 3, 1, 3]
.
function nonUniqueElements(data) {
var array = [];
for (var i = 0; i < data.length; i++) {
while (i >= 2) {
array.push(i);
}
return data;
}
}