website/content.en/ChapterFour/0300~0399/0350.Intersection-of-Two-Arrays-II.md
Given two arrays, write a function to compute their intersection.
Example 1:
Input: nums1 = [1,2,2,1], nums2 = [2,2]
Output: [2,2]
Example 2:
Input: nums1 = [4,9,5], nums2 = [9,4,9,8,4]
Output: [4,9]
Note:
Follow up:
This problem is an enhanced version of Problem 349. It requires outputting the intersection elements of two arrays; if an element appears multiple times, it should be output multiple times.
This problem still follows the approach of Problem 349. Put all the numbers in the first array into a map, where the key is a number from the array and the value is the number of times that number appears. When scanning the second array, each time an existing number is found, decrement the corresponding value in the map by one. If the value is 0, it means this number no longer exists.
package leetcode
func intersect(nums1 []int, nums2 []int) []int {
m := map[int]int{}
var res []int
for _, n := range nums1 {
m[n]++
}
for _, n := range nums2 {
if m[n] > 0 {
res = append(res, n)
m[n]--
}
}
return res
}