Given a positive integer n, find and return the longest distance between any two adjacent 1’s in the binary representation of n. If there are no two adjacent 1’s, return 0.

Two 1’s are adjacent if there are only 0’s separating them (possibly no 0’s). The distance between two 1’s is the absolute difference between their bit positions. For example, the two 1’s in "1001" have a distance of 3.

Example 1:
Input: n = 22
Output: 2
Explanation: 22 in binary is "10110".
The first adjacent pair of 1’s is "10110" with a distance of 2.
The second adjacent pair of 1’s is "10110" with a distance of 1.
The answer is the largest of these two distances, which is 2.
Note that "10110" is not a valid pair since there is a 1 separating the two 1’s underlined.

Example 2:
Input: n = 5
Output: 2
Explanation: 5 in binary is "101".

Example 3:
Input: n = 6
Output: 1
Explanation: 6 in binary is "110".

Example 4:
Input: n = 8
Output: 0
Explanation: 8 in binary is "1000".
There aren’t any adjacent pairs of 1’s in the binary representation of 8, so we return 0.

Example 5:
Input: n = 1
Output: 0

Constraints:

  • 1 <= n <= 10^9

Solution in python

class Solution:
    def binaryGap(self, n: int) -> int:
        result = []
        index = 0
        while n > 0:
            r = n & 1
            if r == 1:
                result.append(index)
            index += 1
            n >>= 1
        if len(result) == 1:
            return 0
        else:
            k = 0
            i = 1
            while i < len(result):
                if result[i] - result[i-1] > k:
                    k = result[i] - result[i-1]
                i += 1
        return k           
最后修改日期: 2021年2月19日

留言

撰写回覆或留言

发布留言必须填写的电子邮件地址不会公开。