You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static void main(List<Integer> intList) { // Передали в () массив List<Integer> intList = Arrays.asList(1, 2, 5, 16, -1, -2, 0, 32, 3, 5, 8, 23, 4); от класса Main, чтобы не было два одинаковых массива
.sorted(Comparator.naturalOrder()) // Comparator.naturalOrder() - Comparable предназначен для определения так называемого естественного порядка ( natural ordering ).