美文网首页
【Leetcode/Python】35. Search Inse

【Leetcode/Python】35. Search Inse

作者: FLYNNNOTES | 来源:发表于2018-10-17 21:23 被阅读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

直接遍历寻找

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

相关文章

网友评论

      本文标题:【Leetcode/Python】35. Search Inse

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