I made a copy of the passed array to avoid modifying the original one but still don't pass the last requirements
package com.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("The minimum is " + result.x);
System.out.println("The maximum is " + result.y);
}
public static Pair<Integer, Integer> getMinimumAndMaximum(int[] array) {
if (array == null || array.length == 0) {
return new Pair<Integer, Integer>(null, null);
}
//write your code here
int[] copy = array;
int n = array.length;
for(int i = 0; i < n; i++){
for(int j = 1; j <= n-1; j++){
if(copy[j-1] > copy[j]){
int temp = copy[j-1];
copy[j-1] = copy[j];
copy[j] = temp;}
}
}
return new Pair<Integer, Integer>(copy[0],copy[n-1]);
}
public static class Pair<X, Y> {
public X x;
public Y y;
public Pair(X x, Y y) {
this.x = x;
this.y = y;
}
}
}