일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- notFound()
- background: url
- codingtest
- context
- React API 참고서
- Babel
- background setttimeout
- hook
- React 고급 안내서
- background tab
- background setInterval
- React18
- Javascript
- React 고급안내서
- RTK Query
- Next13
- react-helmet
- React 공식문서
- CSS
- React 18 Nextjs
- Render Props
- getUTCDate
- react
- React 18
- Nextjs React 18
- react hook
- 고급안내서
- Nextjs
- next13 head
- Programmers
Archives
- Today
- Total
목록최댓값과 최솟값 (1)
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() { 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) == '-..
알고리즘/programmers
2021. 6. 19. 01:20