LeetCode 350: 两个数组的交集 II Intersection of Two Arrays II
题目:给定两个数组,编写一个函数来计算它们的交集。Giventwoarrays,writeafunctiontocomputetheirintersection.示例1:输入: nums1 = [1,2,2,1], nums2 = [2,2]输出: [2,2]示例2:输入: nums1 = [4,9,5], nums2 = [9,4,9,8,4]输出: [4,9]说明:输出结果中每个元素出现的次数