You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
313 B
JavaScript
12 lines
313 B
JavaScript
5 years ago
|
// remove duplicate elements in an array
|
||
|
module.exports = function (O) {
|
||
|
// make a copy of the original array
|
||
|
var A = O.slice();
|
||
|
for (var i = 0; i < A.length; i++) {
|
||
|
for (var j = i + 1; j < A.length; j++) {
|
||
|
if (A[i] === A[j]) { A.splice(j--, 1); }
|
||
|
}
|
||
|
}
|
||
|
return A;
|
||
|
};
|