728. Self Dividing Numbers

网友投稿 622 2022-11-11

728. Self Dividing Numbers

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 = 22Output: [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.

class Solution { public List selfDividingNumbers(int left, int right) { List ans = new ArrayList<>(); for (int i = left; i <= right; ++i) { if (valid(i)) { ans.add(i); } } return ans; } boolean valid (int num) { int n = num; while (num != 0) { int c = num % 10; if (c == 0) return false; else { if (n % c != 0) return false; } num /= 10; } return true; }}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:290. Word Pattern
下一篇:127. Word Ladder
相关文章

 发表评论

暂时没有评论,来抢沙发吧~