Skip to content

Latest commit

 

History

History
62 lines (43 loc) · 1.61 KB

728-self-dividing-numbers.md

File metadata and controls

62 lines (43 loc) · 1.61 KB

728. Self Dividing Numbers - 自除数

自除数 是指可以被它包含的每一位数除尽的数。

例如,128 是一个自除数,因为 128 % 1 == 0128 % 2 == 0128 % 8 == 0

还有,自除数不允许包含 0 。

给定上边界和下边界数字,输出一个列表,列表的元素是边界(含边界)内所有的自除数。

示例 1:

输入: 
上边界left = 1, 下边界right = 22
输出: [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 15, 22]

注意:

  • 每个输入参数的边界满足 1 <= left <= right <= 10000

题目标签:Math

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
python3 92 ms N/A
class Solution:
    def selfDividingNumbers(self, left, right):
        """
        :type left: int
        :type right: int
        :rtype: List[int]
        """
        res = []
        for num in range(left, right+1):
            snum = str(num)
            if '0' in snum:
                continue
            for i in snum:
                if num % int(i) != 0:
                    break
            else:
                res.append(num)
        return res