commit
996ca4955e
|
|
@ -220,7 +220,8 @@ class Solution:
|
|||
|
||||
(版本二)左闭右开区间
|
||||
|
||||
```class Solution:
|
||||
```python
|
||||
class Solution:
|
||||
def search(self, nums: List[int], target: int) -> int:
|
||||
if nums is None or len(nums)==0:
|
||||
return -1
|
||||
|
|
|
|||
Loading…
Reference in New Issue