- 题目地址: https://leetcode-cn.com/problems/intersection-of-two-arrays
- 执行时间: 0 ms
- 内存消耗: 2.5 MB
- 通过日期: 2019-03-08 11:43
给定两个数组,编写一个函数来计算它们的交集。
示例 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()
}
}