题解 | 二分查找-II

二分查找-II

https://www.nowcoder.com/practice/4f470d1d3b734f8aaf2afb014185b395

#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 如果目标值存在返回下标,否则返回 -1
# @param nums int整型一维数组 
# @param target int整型 
# @return int整型
#
class Solution:
    def search(self , nums: List[int], target: int) -> int:
        # write code here
        n = len(nums)
        if n==0 or target not in nums:
            return -1
        for i in range(n):
            if nums[i]==target:
                return i

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务