Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] Non-unique Elements by mozurin
"use strict";
function nonUniqueElements(data)
{
return data.filter(e => data.filter(k => k == e).length > 1);
}
Sept. 8, 2016
Comments: