Here you can find the source of minOfSortedValues(double[] sortedValues)
public static double minOfSortedValues(double[] sortedValues)
//package com.java2s; //License from project: Open Source License public class Main { public static double minOfSortedValues(double[] sortedValues) { return sortedValues[0]; }//from w w w . ja va2 s . c o m }