美文网首页
349. 两个数组的交集

349. 两个数组的交集

作者: Andysys | 来源:发表于2020-02-02 11:02 被阅读0次
        public int[] intersection(int[] nums1, int[] nums2) {
            Set<Integer> set1 = new HashSet<>();
            Set<Integer> result = new HashSet<>();
            for (int num : nums1) {
                set1.add(num);
            }
            for (int num : nums2) {
                if (set1.contains(num)) {
                    result.add(num);
                    set1.remove(num);
                }
            }
            int[] res = new int[result.size()];
            int i = 0;
            for (int num : result) {
                res[i++] = num;
            }
            return res;
        }
    

    相关文章

      网友评论

          本文标题:349. 两个数组的交集

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