class Solution {
    public String solution(String s) {
        String answer = "";
        
        String[] numbers = s.split(" ");
        int min = Integer.MAX_VALUE;
        int max = Integer.MIN_VALUE;
        
        for(int i=0; i<numbers.length; i++){
            int temp = Integer.parseInt(numbers[i]);
            
            min = Math.min(min, temp);
            max = Math.max(max, temp);
        }
        
        answer = min + " " + max;
        
        return answer;
    }
}

 

1. 문자열 s는 둘 이상의 정수가 공백으로 구분 되어 있다. ex) "-1 -2 -3 -4"

2. 공백 기준으로 String형 배열에 넣어준다.

-1 -2 -3 -4

 

3. 반복문에서 String형 배열의 인덱스 값마다 Integer형으로 형변환 후 Math 함수를 이용해 연산