26. 제일 작은 수 제거하기

박재균·2022년 1월 20일
0

알고리즘

목록 보기
26/28

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;
    }
}
profile
열심히 배우겠습니다.

0개의 댓글

관련 채용 정보