Nie zalicza mi tylko warunku "napisz metodę getMininumAndMaximum" , przecież w kodzie jest już ta metodą a poza tym wszystko jest ok.
package pl.codegym.task.task11.task1123;
public class Solution {
public static void main(String[] args) throws Exception {
int[] data = new int[]{1, 2, 3, 5, -2, -8, 0, 77, 5, 5};
Pair<Integer, Integer> result = getMinimumAndMaximum(data);
System.out.println("Minimum to " + result.x);
System.out.println("Maximum to " + result.y);
}
public static Pair<Integer, Integer> getMinimumAndMaximum(int[] array) {
if (array == null || array.length == 0) {
return new Pair<Integer, Integer>(null, null);
}
int max = 0;
int min = array[0];
for(int x : array){
if(x>max){
max = x;
}
if(x<min){
min = x;
}
}
//tutaj wpisz swój kod
return new Pair<Integer, Integer>(min, max);
}
public static class Pair<X, Y> {
public X x;
public Y y;
public Pair(X x, Y y) {
this.x = x;
this.y = y;
}
}
}