import java.util.Arrays
class Solution {
public int[] solution(int[] arr)
{
int[] answer = {};
if ( arr.length == 1)
{
answer = new int[] {-1};
return answer;
}
int[] temp = arr.clone();
boolean check = true;
Arrays.sort(temp);
answer = new int[arr.length-1];
int index = 0;
for( int i=0; i< arr.length; i++)
{
if( (arr[i] == temp[0]) && check)
{
check = false;
continue;
}
answer[index] = arr[i];
index++;
}
return answer;
}
}