일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- React API 참고서
- React 고급안내서
- background setInterval
- 고급안내서
- Nextjs
- RTK Query
- CSS
- React 18 Nextjs
- codingtest
- Render Props
- notFound()
- React 공식문서
- react hook
- React 고급 안내서
- context
- Nextjs React 18
- react-helmet
- React 18
- hook
- background tab
- React18
- Next13
- next13 head
- react
- background: url
- Babel
- background setttimeout
- Programmers
- Javascript
- getUTCDate
Archives
- Today
- Total
akjfal
[Programmers] 최댓값과 최솟값 본문
import java.util.Comparator;
import java.util.Arrays;
class Solution {
public String solution(String s) {
String answer = "";
String[] arr = s.split(" ");
Arrays.sort(arr, new Comparator<String>() {
public int compare(String a, String b){
int a1, b1;
if(a.charAt(0) == '-')
a1 = -1 * Integer.parseInt(a.substring(1, a.length()));
else
a1 = Integer.parseInt(a.substring(0, a.length()));
if(b.charAt(0) == '-')
b1 = -1 * Integer.parseInt(b.substring(1, b.length()));
else
b1 = Integer.parseInt(b.substring(0, b.length()));
return a1 - b1;
}
});
answer = arr[0] + " " + arr[arr.length-1];
return answer;
}
}
굳이 Arrays.sort를 다시 재설정 해주지 말고 Array를 돌면서 max와 min만 구해도된다.
'알고리즘 > programmers' 카테고리의 다른 글
[Programmers] 이진 변환 반복하기 (0) | 2021.06.19 |
---|---|
[Programmers] 피보나치 수 (0) | 2021.06.19 |
[Programmers] 2개 이하로 다른 비트 (0) | 2021.06.18 |
[Programmers] [1차] 프렌즈4블록 (0) | 2021.06.18 |
[Programmers] 영어 끝말잇기 (0) | 2021.06.18 |
Comments