[프로그래머스] 최댓값과 최솟값
2020. 3. 28. 14:55ㆍ프로그래머스/LEVEL 2
import java.util.*;
class Solution {
public String solution(String s) {
String answer = "";
String[] temp = s.split(" ");
int[] numlist = new int[temp.length];
for(int i=0; i<numlist.length; i++){
numlist[i] = Integer.parseInt(temp[i]);
}
Arrays.sort(numlist);
answer = Integer.toString(numlist[0]) + " " + Integer.toString(numlist[numlist.length-1]);
return answer;
}
}
'프로그래머스 > LEVEL 2' 카테고리의 다른 글
[프로그래머스] 다리를 지나는 트럭 (0) | 2020.03.30 |
---|---|
[프로그래머스] 최솟값 만들기 (0) | 2020.03.28 |
[프로그래머스] 더 맵게 (0) | 2020.03.28 |
[프로그래머스] H-Index (0) | 2020.03.28 |
[프로그래머스] 프린터 (0) | 2020.03.27 |