python leetcode 日记--231. Power of Two
摘要:
题目: Given an integer, write a function to determine if it is a power of two. 方法:分析2的幂次方的特点,发现2的任意次方的数,化成二进制时只有首位为1其余位为0,因此我的解决方法如下: bin函数能将一个给定的数化成二进制 阅读全文
posted @ 2016-05-07 18:55 DEnjoy 阅读(188) 评论(0) 推荐(0) 编辑