码迷,mamicode.com
首页 > 其他好文 > 详细

349. Intersection of Two Arrays

时间:2017-06-21 09:39:32      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:nbsp   leetcode   contain   tps   contains   src   image   i++   intersect   

https://leetcode.com/problems/intersection-of-two-arrays/#/solutions

http://www.cnblogs.com/EdwardLiu/p/6096747.html

三种方法哦哦哦

public int[] intersection(int[] nums1, int[] nums2) {
Set<Integer> ans = new HashSet<>();
Set<Integer> set = new HashSet<>();
for (int num : nums1) {
set.add(num);
}
for (int num : nums2) {
if (set.contains(num)) {
ans.add(num);
}
}
int[] res = new int[ans.size()];
int i = 0;
for (Integer num : ans) {
res[i++] = num;
}
return res;
}

技术分享

 

349. Intersection of Two Arrays

标签:nbsp   leetcode   contain   tps   contains   src   image   i++   intersect   

原文地址:http://www.cnblogs.com/apanda009/p/7057748.html

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