Answers for "how to return the highest number and lowest in an arraylist python"

4

how to get the highest value in a list java

import java.util.*;
public class CollectionsMaxExample2 {
public static void main(String[] args) {
//Create collections lists.
List<Integer> list = Arrays.asList(20, 10, 100, 140, 250);
Integer max = Collections.max(list);
System.out.println("Maximum element is: "+max);
}
Posted by: Guest on January-08-2021

Code answers related to "how to return the highest number and lowest in an arraylist python"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language