美文网首页
349. Intersection of Two Arrays

349. Intersection of Two Arrays

作者: 夜皇雪 | 来源:发表于2016-12-13 05:34 被阅读0次
    public class Solution {
        public int[] intersection(int[] nums1, int[] nums2) {
            HashSet<Integer> set=new HashSet<>();
            ArrayList<Integer> arr=new ArrayList<>();
            for(int num:nums1) set.add(num);
            for(int num:nums2){
                if(set.contains(num)){
                    set.remove(num);
                    arr.add(num);
                }
            }
            int k=0;
            int[] res=new int[arr.size()];
            for(Integer num: arr){
                res[k++]=num;
            }
            return res;
        }
    }
    

    相关文章

      网友评论

          本文标题:349. Intersection of Two Arrays

          本文链接:https://www.haomeiwen.com/subject/hpuvmttx.html