leetcode 每日一题 35. 搜索插入位置
Posted nil_f
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 每日一题 35. 搜索插入位置相关的知识,希望对你有一定的参考价值。
二分法
代码:
class Solution: def searchInsert(self, nums: List[int], target: int) -> int: if not nums: return 0 l,r = 0,len(nums)-1 while l <= r: mid = (l+r)//2 if nums[mid]==target: return mid elif nums[mid]<target: l = mid + 1 else: r = mid - 1 return r+1
以上是关于leetcode 每日一题 35. 搜索插入位置的主要内容,如果未能解决你的问题,请参考以下文章