搜索插入位置2019-04-03 本文已影响0人 冷水调画 for i in range(len(nums)): if target <= nums[i]: return i else: return len(nums)