Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Clear&Readable solution in Clear category for [old] Non-unique Elements by SaintDron
"use strict";
function nonUniqueElements(data) {
return data.filter(v => data.indexOf(v) !== data.lastIndexOf(v));
}
var assert = require('assert');
if (!global.is_checking) {
assert.deepEqual(nonUniqueElements([1, 2, 3, 1, 3]), [1, 3, 1, 3], "1st example");
assert.deepEqual(nonUniqueElements([1, 2, 3, 4, 5]), [], "2nd example");
assert.deepEqual(nonUniqueElements([5, 5, 5, 5, 5]), [5, 5, 5, 5, 5], "3rd example");
assert.deepEqual(nonUniqueElements([10, 9, 10, 10, 9, 8]), [10, 9, 10, 10, 9], "4th example");
console.log("Coding complete? Click 'Check' to review your tests and earn cool rewards!");
}
Feb. 28, 2018