搜索插入位置

for i in range(len(nums)):

            if target <= nums[i]:

                return i

        else:

            return len(nums)

你可能感兴趣的:(搜索插入位置)