<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>.</p>