81. Search in Rotated Sorted Array II
problem description
Input: nums = [2,5,6,0,0,1,2], target = 0
Output: trueInput: nums = [2,5,6,0,0,1,2], target = 3
Output: falsealgorithm thought
code
algorithm analysis
Last updated