标签:个数 数组 load ace href line arrays margin bottom
Given two arrays, write a function to compute their intersection.
Example:
Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2, 2].
Note:
Follow up:
public class Solution {public int[] Intersect(int[] nums1, int[] nums2) {List<int> list = new List<int>();List<int> intersectList = new List<int>();list = nums1.ToList<int>();int num = 0;int length = nums2.Length;for(int i=0;i<length;i++){num = nums2[i];if (list.Contains(nums2[i])){list.Remove(num);intersectList.Add(num);}}int[] intersect = intersectList.ToArray();return intersect;}}
350.求两个数组的交集 Intersection of Two Arrays II
标签:个数 数组 load ace href line arrays margin bottom
原文地址:http://www.cnblogs.com/xiejunzhao/p/6f1b84afef0f161549153f0441fd4bd2.html