leetcode练习:693. Binary Number with Alternating Bits
Posted 年糕君の勉强笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode练习:693. Binary Number with Alternating Bits相关的知识,希望对你有一定的参考价值。
693是一道很简单的题目。
var hasAlternatingBits = function(n) { var bin = []; while(n>0){ bin.unshift(n%2); n = parseInt(n/2); } bin.join(‘‘); var len = bin.length; var i,j; for(i = 0;i<len ;i++){ if(bin[i] == bin[i+1]){ return false; } } return true; };
以上是关于leetcode练习:693. Binary Number with Alternating Bits的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 693. Binary Number with Alternating Bits 自我反思
Leetcode - 693. Binary Number with Alternating Bits
**Leetcode 701. Insert into a Binary Search Tree