<p>You are given an array of integers <code>nums</code>. You are also given an integer <code>original</code> which is the first number that needs to be searched for in <code>nums</code>.</p>
<p>You then do the following steps:</p>
<ol>
<li>If <code>original</code> is found in <code>nums</code>, <strong>multiply</strong> it by two (i.e., set <code>original = 2 * original</code>).</li>
<li>Otherwise, <strong>stop</strong> the process.</li>
<li><strong>Repeat</strong> this process with the new number as long as you keep finding the number.</li>
</ol>
<p>Return <em>the <strong>final</strong> value of </em><code>original</code>.</p>