<p>You are given an array <code>target</code> of n integers. From a starting array <code>arr</code> consisting of <code>n</code> 1's, you may perform the following procedure :</p>
<ul>
<li>let <code>x</code> be the sum of all elements currently in your array.</li>
<li>choose index <code>i</code>, such that <code>0 <= i < n</code> and set the value of <code>arr</code> at index <code>i</code> to <code>x</code>.</li>
<li>You may repeat this procedure as many times as needed.</li>
</ul>
<p>Return <code>true</code><em>if it is possible to construct the</em><code>target</code><em>array from</em><code>arr</code><em>, otherwise, return</em><code>false</code>.</p>