A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/javaexamples/collection_minmax.htm below:

How to find min & max of a List in Java

How to find min & max of a List in Java Problem Description

How to find min & max of a List?

Solution

Following example uses min & max Methods to find minimum & maximum of the 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));
   }
}
Result

The above code sample will produce the following result.

[one, Two, three, Four, five, six, one, three, Four]
max: three
min: Four

java_collections.htm


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4