当前位置 : 主页 > 编程语言 > python >

LeetCode Algorithm 704. 二分查找

来源:互联网 收集:自由互联 发布时间:2022-06-18
​​704. 二分查找​​ Ideas 这题想考察二分查找的来着。 对不起,真的对不起,作为Python爱好者,实在没忍住,就一行代码解决了。 Code Python from typing import List class Solution : def search


​​704. 二分查找​​

Ideas

这题想考察二分查找的来着。

对不起,真的对不起,作为Python爱好者,实在没忍住,就一行代码解决了。

Code

Python

from typing import List


class Solution:
def search(self, nums: List[int], target: int) -> int:
return nums.index(target) if target in nums else -1



上一篇:LeetCode Algorithm 118. 杨辉三角
下一篇:没有了
网友评论