<p>There is a broken calculator that has the integer <code>startValue</code> on its display initially. In one operation, you can:</p>
<ul>
<li>multiply the number on display by <code>2</code>, or</li>
<li>subtract <code>1</code> from the number on display.</li>
</ul>
<p>Given two integers <code>startValue</code> and <code>target</code>, return <em>the minimum number of operations needed to display </em><code>target</code><em> on the calculator</em>.</p>