美文网首页刷完leetcode
LeetCode-Search Insert Position

LeetCode-Search Insert Position

作者: 你说我对钱一往情深 | 来源:发表于2018-10-17 18:41 被阅读0次

Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.

You may assume no duplicates in the array.
Example 1:

  Input: [1,3,5,6], 5
  Output: 2

Solution 1:

class Solution(object):
    def searchInsert(self, nums, target):
        if target in nums:
            loc = nums.index(target)
        else:
            nums.insert(0,target)
            nums1 = sorted(nums)
            loc = nums1.index(target) 
        return(loc)

Solution 2:

class Solution(object):
    def searchInsert(self, nums, target):
        for i in range(len(nums)):
            if nums[i] >= target:
                return i
        return i+1

相关文章

网友评论

    本文标题:LeetCode-Search Insert Position

    本文链接:https://www.haomeiwen.com/subject/yogrzftx.html