Intersection of Two Arrays II
Given two arrays, write a function to compute their intersection.
Example 1:
Example 2:
Note:
Each element in the result should appear as many times as it shows in both arrays.
The result can be in any order.
分析
用counter intersection 或者双指针
Last updated