LeetCode Algorithm 704. 二分查找

Posted Alex_996

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Algorithm 704. 二分查找相关的知识,希望对你有一定的参考价值。

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 704. 二分查找的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 704. 二分查找

LeetCode 704. 二分查找

LeetCode 704. Binary Search

leetcode 704. 二分查找

[leetcode]704.二分查找

leetcode704