码迷,mamicode.com
首页 > 编程语言 > 详细

349. Intersection of Two Arrays java solutions

时间:2016-06-01 12:42:57      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

Given two arrays, write a function to compute their intersection.

Example:
Given nums1 = [1, 2, 2, 1]nums2 = [2, 2], return [2].

Note:

  • Each element in the result must be unique.
  • The result can be in any order.

 

Subscribe to see which companies asked this question

 
 1 public class Solution {
 2     public int[] intersection(int[] nums1, int[] nums2) {
 3         int len1 = nums1.length, len2 = nums2.length;
 4         Set<Integer> set = new HashSet<Integer>();
 5         Set<Integer> set2 = new HashSet<Integer>();
 6         for(int i = 0; i < len1; i++){
 7             set.add(nums1[i]);
 8         }
 9         for(int i = 0; i < len2; i++){
10             if(set.contains(nums2[i])) set2.add(nums2[i]);
11         }
12         int[] res = new int[set2.size()];
13         int index = 0;
14         for(int ans : set2){
15             res[index++] = ans;
16         }
17         return res;
18     }
19 }

 

349. Intersection of Two Arrays java solutions

标签:

原文地址:http://www.cnblogs.com/guoguolan/p/5549132.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!