263.Ugly Number||202 happy number||476 Number Complement||136 Single Number

263.Ugly Number
判断因数是否只有素数2、3、5。。
感觉比较简单:

class Solution(object):
    def isUgly(self, num):
        """
        :type num: int
        :rtype: bool
        """
        d=[5,3,2]
        for i in d:
            while not num%i:
                num//=i
        return num==1

没有考虑0的情况,加上0就可以了
想法:
1改进 using tuple (2, 3, 5)
2再改进 using tuple (2,3,5,6,8,10)
3干脆直接用数

class Solution(object):
    def isUgly(self, num):
        if num>0:
            for i in 10,8,6,5,3,2:
                while not num%i:
                    num//=i
        return num==1

202 happy number
如果一个数算来算去平方和最后为1,则是happy number
思路:
需要创建一个哈希表,来存放每一步计算的平方和,
直到:
出现了1、真
出现了重复、假

class Solution(object):
    def isHappy(self, n):
        """
        :type n: int
        :rtype: bool
        """
        #题目要求给的是 正数了
        d=set()
        while n!=1:
            if n in d:return False
            d.add(n)
            n=sum([int(i)**2 for i in str(n)])
        return True

476 Number Complement
计算补码,方法是:一位一位的和1异或

class Solution(object):
    def findComplement(self, num):
        """
        :type num: int
        :rtype: int
        """
        i=1
        while num>=i:
            num^=i
            i<<=1
        return num

136 Single Number
所有数出现两次,只有一个单身狗~~用异或的化,一对情侣就消除了,只剩下单身狗。。汪

class Solution(object):
    def singleNumber(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        for x in nums[1:]:
            nums[0]^=x
        return nums[0]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值