g0701_0800.s0728_self_dividing_numbers.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0701_0800.s0728_self_dividing_numbers;
// #Easy #Math #2022_03_24_Time_1_ms_(100.00%)_Space_39.8_MB_(88.16%)
import java.util.ArrayList;
import java.util.List;
public class Solution {
public List selfDividingNumbers(final int left, final int right) {
final List list = new ArrayList<>();
for (int i = left; i <= right; i++) {
if (isSelfDividing(i)) {
list.add(i);
}
}
return list;
}
private boolean isSelfDividing(int value) {
final int origin = value;
while (value != 0) {
final int digit = value % 10;
value /= 10;
if (digit == 0 || origin % digit != 0) {
return false;
}
}
return true;
}
}