how to find the max and min in an arraylist code example
Example: find max integer in arraylist java
List<Integer> list = new ArrayList<Integer>();
Collections.max(list)
List<Integer> list = new ArrayList<Integer>();
Collections.max(list)