81. 搜索旋轉排序數組 II

解 二分查找 找到第二個有序數組的起始索引 對兩個有序數組進行二分查找 class Solution: def search(self, nums: List[int], target: int) -> bool: # 找第二個有序數組的起始索引 k = 0 while k < len(nums) - 1
相關文章
相關標籤/搜索