-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path349.两个数组的交集.js
56 lines (54 loc) · 1.05 KB
/
349.两个数组的交集.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
* @lc app=leetcode.cn id=349 lang=javascript
*
* [349] 两个数组的交集
*
* https://leetcode-cn.com/problems/intersection-of-two-arrays/description/
*
* algorithms
* Easy (74.04%)
* Likes: 537
* Dislikes: 0
* Total Accepted: 294.6K
* Total Submissions: 397.6K
* Testcase Example: '[1,2,2,1]\n[2,2]'
*
* 给定两个数组 nums1 和 nums2 ,返回 它们的交集 。输出结果中的每个元素一定是 唯一 的。我们可以 不考虑输出结果的顺序 。
*
*
*
* 示例 1:
*
*
* 输入:nums1 = [1,2,2,1], nums2 = [2,2]
* 输出:[2]
*
*
* 示例 2:
*
*
* 输入:nums1 = [4,9,5], nums2 = [9,4,9,8,4]
* 输出:[9,4]
* 解释:[4,9] 也是可通过的
*
*
*
*
* 提示:
*
*
* 1 <= nums1.length, nums2.length <= 1000
* 0 <= nums1[i], nums2[i] <= 1000
*
*
*/
// @lc code=start
/**
* @param {number[]} nums1
* @param {number[]} nums2
* @return {number[]}
*/
var intersection = function (nums1, nums2) {
return [...new Set(nums1.filter((item) => nums2.includes(item)))];
};
// @lc code=end