【leetcode 简单】第十一题 搜索插入位置

2018-08-10 11:26:38来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。

你可以假设数组中无重复元素。

示例 1:

输入: [1,3,5,6], 5
输出: 2

示例 2:

输入: [1,3,5,6], 2
输出: 1

示例 3:

输入: [1,3,5,6], 7
输出: 4

示例 4:

输入: [1,3,5,6], 0
输出: 0
class Solution:
    def searchInsert(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: int
        """

        index=-1
        last=0
        try:
            return nums.index(target)
        except:
            for i in range(len(nums)):
                if target > nums[i]:
                    last+=1
        nums.insert(last,target)
        return index if index > 1 else last

 



标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:python常用模块详解

下一篇:python 课程博客链接