<p>You are given a large sample of integers in the range <code>[0, 255]</code>. Since the sample is so large, it is represented by an array <code>count</code> where <code>count[k]</code> is the <strong>number of times</strong> that <code>k</code> appears in the sample.</p>
<p>Calculate the following statistics:</p>
<ul>
<li><code>minimum</code>: The minimum element in the sample.</li>
<li><code>maximum</code>: The maximum element in the sample.</li>
<li><code>mean</code>: The average of the sample, calculated as the total sum of all elements divided by the total number of elements.</li>
<li><code>median</code>:
<ul>
<li>If the sample has an odd number of elements, then the <code>median</code> is the middle element once the sample is sorted.</li>
<li>If the sample has an even number of elements, then the <code>median</code> is the average of the two middle elements once the sample is sorted.</li>
</ul>
</li>
<li><code>mode</code>: The number that appears the most in the sample. It is guaranteed to be <strong>unique</strong>.</li>
</ul>
<p>Return <em>the statistics of the sample as an array of floating-point numbers </em><code>[minimum, maximum, mean, median, mode]</code><em>. Answers within </em><code>10<sup>-5</sup></code><em> of the actual answer will be accepted.</em></p>