美文网首页
Leetcode-278题:First Bad Version

Leetcode-278题:First Bad Version

作者: 八刀一闪 | 来源:发表于2016-10-11 21:23 被阅读13次

    题目

    You are a product manager and currently leading a team to develop a new product. Unfortunately, the latest version of your product fails the quality check. Since each version is developed based on the previous version, all the versions after a bad version are also bad.

    Suppose you have n versions [1, 2, ..., n] and you want to find out the first bad one, which causes all the following ones to be bad.

    You are given an API bool isBadVersion(version) which will return whether version is bad. Implement a function to find the first bad version. You should minimize the number of calls to the API.

    代码

    # The isBadVersion API is already defined for you.
    # @param version, an integer
    # @return a bool
    # def isBadVersion(version):
    
    class Solution(object):
    
        def search(self,l,r):
            if l > r:
                return -1
            m = l + (r-l)/2
            isBad = isBadVersion(m)
            if isBad:
                firstBad = self.search(l,m-1)
                if firstBad == -1:
                    return m
                else:
                    return firstBad
            else:
                return self.search(m+1,r)
    
        def firstBadVersion(self, n):
            """
            :type n: int
            :rtype: int
            """
            if n < 1:
                return -1
            return self.search(1,n)
    

    相关文章

      网友评论

          本文标题:Leetcode-278题:First Bad Version

          本文链接:https://www.haomeiwen.com/subject/dnbbyttx.html