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