摘要: # 1 算法原理 **适用条件:有序数组** # 2 算法模板 ```python class Solution: def search(self, nums: List[int], target: int) -> int: left = 0 right = len(nums) - 1 # 规则 [ 阅读全文
posted @ 2023-06-11 10:54 柳叶昶 阅读(0) 评论(0) 推荐(0) 编辑