1. 程式人生 > >788. 旋轉數字

788. 旋轉數字

https://blog.csdn.net/qq_21162871/article/details/80380321

https://blog.csdn.net/fuxuemingzhu/article/details/79378135

 

# 可以總結出以下的要求:
#
# 該數字中不含[3, 4, 7],否則其倒影不是數字。
# 該數字中必須包含[2, 5, 6, 9]中的至少一個,否則倒影和原數字相同
# 包含[2, 5, 6, 9]中的至少一個==[1,8,0]不構成全部的數字

class Solution(object):
    def rotatedDigits(self, N):
        """
        :type N: int
        :rtype: int
        """
        str1 = ''
        rs = 0
        for i in range(1,N+1):
            # print(i)
            str1 = str(i)
            if (str1.count('3')==0 and str1.count('4')==0 and str1.count('7')==0):
                if (str1.count('1')+str1.count('8')+str1.count('0')!=len(str1)):
                    rs += 1
        return rs