给定两个升序的数列 arr1 和 arr2 ,和一个整数 target ,请你找出两个数列中第 K 小的值。 数据范围:两个数列的长度都满足 ,数列中的值都满足 ,给定整数大小满足
示例1
输入
[1,2,3,4],[1,3,4],2
输出
1
说明
两个数列中数升序排列是 1 1 2 3 3 4,故第二小的是 1
示例2
输入
[1,2,3,4],[1,3,4],7
输出
4
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr1 int整型一维数组 * @param arr2 int整型一维数组 * @param target int整型 * @return int整型 */ public int findKthNum (int[] arr1, int[] arr2, int target) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr1 int整型vector * @param arr2 int整型vector * @param target int整型 * @return int整型 */ int findKthNum(vector
& arr1, vector
& arr2, int target) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param arr1 int整型一维数组 # @param arr2 int整型一维数组 # @param target int整型 # @return int整型 # class Solution: def findKthNum(self , arr1 , arr2 , target ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr1 int整型一维数组 * @param arr2 int整型一维数组 * @param target int整型 * @return int整型 */ public int findKthNum (List
arr1, List
arr2, int target) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr1 int整型一维数组 * @param arr2 int整型一维数组 * @param target int整型 * @return int整型 */ function findKthNum( arr1 , arr2 , target ) { // write code here } module.exports = { findKthNum : findKthNum };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param arr1 int整型一维数组 # @param arr2 int整型一维数组 # @param target int整型 # @return int整型 # class Solution: def findKthNum(self , arr1: List[int], arr2: List[int], target: int) -> int: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr1 int整型一维数组 * @param arr2 int整型一维数组 * @param target int整型 * @return int整型 */ func findKthNum( arr1 []int , arr2 []int , target int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr1 int整型一维数组 * @param arr1Len int arr1数组长度 * @param arr2 int整型一维数组 * @param arr2Len int arr2数组长度 * @param target int整型 * @return int整型 */ int findKthNum(int* arr1, int arr1Len, int* arr2, int arr2Len, int target ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param arr1 int整型一维数组 # @param arr2 int整型一维数组 # @param target int整型 # @return int整型 # class Solution def findKthNum(arr1, arr2, target) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr1 int整型一维数组 * @param arr2 int整型一维数组 * @param target int整型 * @return int整型 */ def findKthNum(arr1: Array[Int],arr2: Array[Int],target: Int): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr1 int整型一维数组 * @param arr2 int整型一维数组 * @param target int整型 * @return int整型 */ fun findKthNum(arr1: IntArray,arr2: IntArray,target: Int): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr1 int整型一维数组 * @param arr2 int整型一维数组 * @param target int整型 * @return int整型 */ public int findKthNum (int[] arr1, int[] arr2, int target) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr1 int整型一维数组 * @param arr2 int整型一维数组 * @param target int整型 * @return int整型 */ export function findKthNum(arr1: number[], arr2: number[], target: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr1 int整型一维数组 * @param arr2 int整型一维数组 * @param target int整型 * @return int整型 */ func findKthNum ( _ arr1: [Int], _ arr2: [Int], _ target: Int) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr1 int整型一维数组 * @param arr2 int整型一维数组 * @param target int整型 * @return int整型 */ pub fn findKthNum(&self, arr1: Vec
, arr2: Vec
, target: i32) -> i32 { // write code here } }
[1,2,3,4],[1,3,4],2
1
[1,2,3,4],[1,3,4],7
4