<p>Alice and Bob are opponents in an archery competition. The competition has set the following rules:</p>
<ol>
<li>Alice first shoots <code>numArrows</code> arrows and then Bob shoots <code>numArrows</code> arrows.</li>
<li>The points are then calculated as follows:
<ol>
<li>The target has integer scoring sections ranging from <code>0</code> to <code>11</code><strong>inclusive</strong>.</li>
<li>For <strong>each</strong> section of the target with score <code>k</code> (in between <code>0</code> to <code>11</code>), say Alice and Bob have shot <code>a<sub>k</sub></code> and <code>b<sub>k</sub></code> arrows on that section respectively. If <code>a<sub>k</sub>>= b<sub>k</sub></code>, then Alice takes <code>k</code> points. If <code>a<sub>k</sub>< b<sub>k</sub></code>, then Bob takes <code>k</code> points.</li>
<li>However, if <code>a<sub>k</sub> == b<sub>k</sub> == 0</code>, then <strong>nobody</strong> takes <code>k</code> points.</li>
</ol>
</li>
</ol>
<ul>
<li>
<p>For example, if Alice and Bob both shot <code>2</code> arrows on the section with score <code>11</code>, then Alice takes <code>11</code> points. On the other hand, if Alice shot <code>0</code> arrows on the section with score <code>11</code> and Bob shot <code>2</code> arrows on that same section, then Bob takes <code>11</code> points.</p>
</li>
</ul>
<p>You are given the integer <code>numArrows</code> and an integer array <code>aliceArrows</code> of size <code>12</code>, which represents the number of arrows Alice shot on each scoring section from <code>0</code> to <code>11</code>. Now, Bob wants to <strong>maximize</strong> the total number of points he can obtain.</p>
<p>Return <em>the array </em><code>bobArrows</code><em> which represents the number of arrows Bob shot on <strong>each</strong> scoring section from </em><code>0</code><em> to </em><code>11</code>. The sum of the values in <code>bobArrows</code> should equal <code>numArrows</code>.</p>
<p>If there are multiple ways for Bob to earn the maximum total points, return <strong>any</strong> one of them.</p>