美文网首页
11、搜索插入位置 leetcode35

11、搜索插入位置 leetcode35

作者: 九答 | 来源:发表于2020-04-03 14:32 被阅读0次

    描述

    image.png

    直观解法

    class Solution:
        def searchInsert(self, nums: List[int], target: int) -> int:
            for i in range(len(nums)):
                if nums[i] >= target:
                    return i
                elif nums[len(nums)-1] < target:
                    return len(nums)
    

    简单语句解法:返回的值等于数组中小于target的个数

            res = [i for i in nums if i<target]
            return len(res)
    

    相关文章

      网友评论

          本文标题:11、搜索插入位置 leetcode35

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