博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
349. Intersection of Two Arrays java solutions
阅读量:4984 次
发布时间:2019-06-12

本文共 998 字,大约阅读时间需要 3 分钟。

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.

 

 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
set = new HashSet
(); 5 Set
set2 = new HashSet
(); 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 }

 

转载于:https://www.cnblogs.com/guoguolan/p/5549132.html

你可能感兴趣的文章
Spring-aop(一)
查看>>
ucos在xp平台下开发环境搭建
查看>>
python基础入门while循环 格式化 编码初识
查看>>
cmake方式使用vlfeat
查看>>
windows下用纯C实现一个简陋的imshow:基于GDI
查看>>
struts2 自定义类型转换器
查看>>
cocos2d-x xna在有vs2012和vs2010的情况下的环境部署
查看>>
43-安装 Docker Machine
查看>>
c++学习(三):表达式和语句
查看>>
laravel框架基础知识总结
查看>>
nginx: 响应体太大
查看>>
字符串反混淆实战 Dotfuscator 4.9 字符串加密技术应对策略
查看>>
单例模式
查看>>
Robotium源码分析之Instrumentation进阶
查看>>
Android 交错 GridView
查看>>
(2)把BlackBerry作为插件安装到已有的Eclipse中
查看>>
VUE-es6
查看>>
MySQL-5.7 高阶语法及流程控制
查看>>
C++学习笔记(十)——向上造型
查看>>
2017/6/16
查看>>