标签:插入 返回 lse 位置 tar turn insert 排序数组 get
def searchInsert(nums, target):
for i in nums:
if i>=target:
return nums.index(i)
if nums[0]>=target:
return 0
else:
return len(nums)
给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。
标签:插入 返回 lse 位置 tar turn insert 排序数组 get
原文地址:https://www.cnblogs.com/zhangtianxia/p/9038483.html