|
@@ -22,13 +22,13 @@ library Arrays {
|
|
|
* repeated elements.
|
|
|
*/
|
|
|
function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
|
|
|
- if (array.length == 0) {
|
|
|
- return 0;
|
|
|
- }
|
|
|
-
|
|
|
uint256 low = 0;
|
|
|
uint256 high = array.length;
|
|
|
|
|
|
+ if (high == 0) {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
while (low < high) {
|
|
|
uint256 mid = Math.average(low, high);
|
|
|
|