mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
25 lines
1.0 KiB
HTML
25 lines
1.0 KiB
HTML
<p>A <strong>self-dividing number</strong> is a number that is divisible by every digit it contains.</p>
|
|
|
|
<ul>
|
|
<li>For example, <code>128</code> is <strong>a self-dividing number</strong> because <code>128 % 1 == 0</code>, <code>128 % 2 == 0</code>, and <code>128 % 8 == 0</code>.</li>
|
|
</ul>
|
|
|
|
<p>A <strong>self-dividing number</strong> is not allowed to contain the digit zero.</p>
|
|
|
|
<p>Given two integers <code>left</code> and <code>right</code>, return <em>a list of all the <strong>self-dividing numbers</strong> in the range</em> <code>[left, right]</code> (both <strong>inclusive</strong>).</p>
|
|
|
|
<p> </p>
|
|
<p><strong class="example">Example 1:</strong></p>
|
|
<pre><strong>Input:</strong> left = 1, right = 22
|
|
<strong>Output:</strong> [1,2,3,4,5,6,7,8,9,11,12,15,22]
|
|
</pre><p><strong class="example">Example 2:</strong></p>
|
|
<pre><strong>Input:</strong> left = 47, right = 85
|
|
<strong>Output:</strong> [48,55,66,77]
|
|
</pre>
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>1 <= left <= right <= 10<sup>4</sup></code></li>
|
|
</ul>
|