442. 数组中重复的数据

Posted rencoo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了442. 数组中重复的数据相关的知识,希望对你有一定的参考价值。

 1/**
2 * @param {number[]} nums
3 * @return {number[]}
4 */

5var findDuplicates = function(nums{
6    nums.sort((a,b) => a - b);
7
8    for (let i = 0; i < nums.length - 1; i++) {
9        if(nums[i+1] !== nums[i]) {
10            nums.splice(i, 1);
11            i--;
12        }
13    }
14
15    nums.pop(); // 删去最后一个多余的
16
17    return nums;
18};
19
20ensureEqual(findDuplicates([4,3,2,7,8,2,3,1]), [2,3], ‘test 1‘);




















以上是关于442. 数组中重复的数据的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 442 数组中重复的数据[哈希表] HERODING的LeetCode之路

数组442. 数组中重复的数据

leetcode 442. 数组中重复的数据

442. 数组中重复的数据

442. 数组中重复的数据

442. 数组中重复的数据