给定两个整数数组分别为, ,找到它们的公共元素并按返回。 数据范围:
示例1
输入
[1,2 ],[2,2,2,2]
输出
[2]
说明
两个数组的公共元素只有2
示例2
输入
[1,2,3],[8,2,2,3,8]
输出
[2,3]
说明
两个数组的公共元素为2和3,返回[3,2]也是一个正确的答案
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums1 int整型ArrayList * @param nums2 int整型ArrayList * @return int整型ArrayList */ public ArrayList
intersection (ArrayList
nums1, ArrayList
nums2) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums1 int整型vector * @param nums2 int整型vector * @return int整型vector */ vector
intersection(vector
& nums1, vector
& nums2) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param nums1 int整型一维数组 # @param nums2 int整型一维数组 # @return int整型一维数组 # class Solution: def intersection(self , nums1 , nums2 ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums1 int整型一维数组 * @param nums2 int整型一维数组 * @return int整型一维数组 */ public List
intersection (List
nums1, List
nums2) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums1 int整型一维数组 * @param nums2 int整型一维数组 * @return int整型一维数组 */ function intersection( nums1 , nums2 ) { // write code here } module.exports = { intersection : intersection };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param nums1 int整型一维数组 # @param nums2 int整型一维数组 # @return int整型一维数组 # class Solution: def intersection(self , nums1: List[int], nums2: List[int]) -> List[int]: # write code here
package main //import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums1 int整型一维数组 * @param nums2 int整型一维数组 * @return int整型一维数组 */ func intersection( nums1 []int , nums2 []int ) []int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums1 int整型一维数组 * @param nums1Len int nums1数组长度 * @param nums2 int整型一维数组 * @param nums2Len int nums2数组长度 * @return int整型一维数组 * @return int* returnSize 返回数组行数 */ int* intersection(int* nums1, int nums1Len, int* nums2, int nums2Len, int* returnSize ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param nums1 int整型一维数组 # @param nums2 int整型一维数组 # @return int整型一维数组 # class Solution def intersection(nums1, nums2) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums1 int整型一维数组 * @param nums2 int整型一维数组 * @return int整型一维数组 */ def intersection(nums1: Array[Int],nums2: Array[Int]): Array[Int] = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums1 int整型一维数组 * @param nums2 int整型一维数组 * @return int整型一维数组 */ fun intersection(nums1: IntArray,nums2: IntArray): IntArray { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums1 int整型一维数组 * @param nums2 int整型一维数组 * @return int整型一维数组 */ public int[] intersection (int[] nums1, int[] nums2) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums1 int整型一维数组 * @param nums2 int整型一维数组 * @return int整型一维数组 */ export function intersection(nums1: number[], nums2: number[]): number[] { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums1 int整型一维数组 * @param nums2 int整型一维数组 * @return int整型一维数组 */ func intersection ( _ nums1: [Int], _ nums2: [Int]) -> [Int] { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums1 int整型一维数组 * @param nums2 int整型一维数组 * @return int整型一维数组 */ pub fn intersection(&self, nums1: Vec
, nums2: Vec
) -> Vec
{ // write code here } }
[1,2 ],[2,2,2,2]
[2]
[1,2,3],[8,2,2,3,8]
[2,3]