# 两个数组的交集

  1. 两个数组的交集

来源:力扣(LeetCode) 链接:https://leetcode.cn/problems/merge-two-sorted-lists/ 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

github (opens new window)

# 问题

输入:nums1 = [1,2,2,1], nums2 = [2,2]
输出:[2]

# 思考

 let arr = [];

  const set1 = new Set(nums1);
  const set2 = new Set(nums2);

  const values = Array.from(set1.values());

  for (let index = 0; index < values.length; index++) {
    const element = values[index];
    if (set2.has(element)) {
      arr.push(element);
    }
  }

  return arr;
陕ICP备20004732号-3