LeetCode LeetCode 2022-05-06 35. Search Insert Position 文章目录 1. 题目2. 思路 题目 思路这道题我用的暴力检索,依次检索数组内的元素,如果指针比目标小就往后一位,如果大于等于就输出指针。这里需要考虑到如果整个数组内都比指针小的情况。 123456789101112131415class Solution(object): def searchInsert(self, nums, target): """ :type nums: List[int] :type target: int :rtype: int """ count =0 for i in range(len(nums)): if nums[i]<target: count+=1 else: return count return count