Skip to content

Latest commit

 

History

History
 
 

n0349. Intersection of Two Arrays

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Intersection of Two Arrays ⭐

题目内容

给定两个数组,编写一个函数来计算它们的交集。

示例 1:

输入: nums1 = [1,2,2,1], nums2 = [2,2]
输出: [2]

示例 2:

输入: nums1 = [4,9,5], nums2 = [9,4,9,8,4]
输出: [9,4]

说明:

  • 输出结果中的每个元素一定是唯一的。
  • 我们可以不考虑输出结果的顺序。

解法

// Author: Netcan @ https://github.com/netcan/Leetcode-Rust
// Zhihu: https://www.zhihu.com/people/netcan

use std::collections::HashSet;
impl Solution {
    pub fn intersection(nums1: Vec<i32>, nums2: Vec<i32>) -> Vec<i32> {
        let a: HashSet<i32> = nums1.iter().cloned().collect();
        let b: HashSet<i32> = nums2.iter().cloned().collect();
        
        a.intersection(&b).cloned().collect()
    }
}