배열의 교차점
3386 단어 javascriptleetcode
출력: [9,4]
설명: [4,9]도 허용됩니다.
/**
* @param {number[]} nums1
* @param {number[]} nums2
* @return {number[]}
*/
var intersection = function (nums1, nums2) {
let map = new Map();
let intersectionArray = [];
for (let i = 0; i < nums1.length; i++) {
if (!map.has(nums1[i])) {
map.set(nums1[i], 1);
}
}
for (let i = 0; i < nums2.length; i++) {
if (map.has(nums2[i]) && intersectionArray.indexOf(nums2[i]) === -1) {
intersectionArray.push(nums2[i]);
}
}
return intersectionArray;
};
Reference
이 문제에 관하여(배열의 교차점), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/zeeshanali0704/intersection-of-array-46nk텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)