일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Render Props
- Nextjs React 18
- React 18
- RTK Query
- react-helmet
- React18
- React 공식문서
- React API 참고서
- hook
- next13 head
- background: url
- React 고급 안내서
- background tab
- Babel
- React 고급안내서
- CSS
- Javascript
- background setInterval
- codingtest
- Next13
- Nextjs
- react
- getUTCDate
- Programmers
- React 18 Nextjs
- react hook
- background setttimeout
- 고급안내서
- context
- notFound()
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