加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

693. Binary Number with Alternating Bits

发布时间:2020-12-14 04:17:23 所属栏目:大数据 来源:网络整理
导读:Given a positive integer,check whether it has alternating bits: namely,if two adjacent bits will always have different values. Example 1: Input: 5 Output: True Explanation: The binary representation of 5 is: 101 Example 2: Input: 7 Output:

Given a positive integer,check whether it has alternating bits: namely,if two adjacent bits will always have different values.

Example 1:

Input: 5
Output: True
Explanation:
The binary representation of 5 is: 101

Example 2:

Input: 7
Output: False
Explanation:
The binary representation of 7 is: 111.

Example 3:

Input: 11
Output: False
Explanation:
The binary representation of 11 is: 1011.

Example 4:

Input: 10
Output: True
Explanation:
The binary representation of 10 is: 1010.

class Solution:
    def hasAlternatingBits(self,n):
        """
        :type n: int
        :rtype: bool
        """
        s = bin(n)
        for i in range(2,len(s)-1):
            if s[i]==‘1‘:
                if s[i+1]!=‘0‘:
                    return False
            else:
                if s[i+1]!=‘1‘:
                    return False
        return True

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读