#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
#
# @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 数字不大,直接先合并排序后再
return sorted(arr1+arr2)[target-1]



京公网安备 11010502036488号