首页 > 编程语言 > 详细

349. Intersection of Two Arrays java solutions

时间:2016-06-01 12:40:23      阅读:121      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!