leetcode讲解--728. Self Dividing Numbers

本文深入探讨了自除数的概念及其实现算法,自除数是指一个数能被其每一位数字整除的数,但不包含数字0。文章通过一个具体的例子解释了如何判断一个数是否为自除数,并提供了一段Java代码实现从给定范围中找出所有自除数的解决方案。

728. Self Dividing Numbers

A self-dividing number is a number that is divisible by every digit it contains.

For example, 128 is a self-dividing number because 128 % 1 == 0, 128 % 2 == 0, and 128 % 8 == 0.

Also, a self-dividing number is not allowed to contain the digit zero.

Given a lower and upper number bound, output a list of every possible self dividing number, including the bounds if possible.

Example 1:

Input: 
left = 1, right = 22
Output: [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 15, 22]

Note:

  • The boundaries of each input argument are 1 <= left <= right <= 10000.

这道题需要注意几点:

  1. 不要直接对i进行操作,而是复制一份,对复制品进行操作
  2. 对0的过滤,0不能做除数
  3. while的控制条件应该是num!=0,而非num/10!=0,否则会过滤掉个位数

Java代码

class Solution {
    public List<Integer> selfDividingNumbers(int left, int right) {
        List<Integer> result = new ArrayList<>();
        for(int i=left;i<=right;i++){
            boolean flag = true;
            int num=i;
            while(num!=0){
                int n = num%10;
                if(n==0 || i%n!=0){
                    flag = false;
                    break;
                }
                num=num/10;
            }
            if(flag){
                result.add(i);
            }
        }
        return result;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值