Find min &
max from a List
import java.util.*;
public class Main
{
public static void main(String[] args)
{
List list = Arrays.asList("one Two
three Four five six
one three Four".split("
"));
System.out.println(list);
System.out.println("max: " +
Collections.max(list));
System.out.println("min: " +
Collections.min(list));
}
}
No comments:
Post a Comment