<p>You are given an integer array <code>coins</code> of length <code>n</code> which represents the <code>n</code> coins that you own. The value of the <code>i<sup>th</sup></code> coin is <code>coins[i]</code>. You can <strong>make</strong> some value <code>x</code> if you can choose some of your <code>n</code> coins such that their values sum up to <code>x</code>.</p>
<p>Return the <em>maximum number of consecutive integer values that you <strong>can</strong><strong>make</strong> with your coins <strong>starting</strong> from and <strong>including</strong></em><code>0</code>.</p>
<p>Note that you may have multiple coins of the same value.</p>