<p>Given two integers <code>tomatoSlices</code> and <code>cheeseSlices</code>. The ingredients of different burgers are as follows:</p>
<ul>
<li><strong>Jumbo Burger:</strong><code>4</code> tomato slices and <code>1</code> cheese slice.</li>
<li><strong>Small Burger:</strong><code>2</code> Tomato slices and <code>1</code> cheese slice.</li>
</ul>
<p>Return <code>[total_jumbo, total_small]</code> so that the number of remaining <code>tomatoSlices</code> equal to <code>0</code> and the number of remaining <code>cheeseSlices</code> equal to <code>0</code>. If it is not possible to make the remaining <code>tomatoSlices</code> and <code>cheeseSlices</code> equal to <code>0</code> return <code>[]</code>.</p>