일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- React 18
- react hook
- Nextjs React 18
- hook
- 고급안내서
- codingtest
- React 고급 안내서
- Nextjs
- next13 head
- background setttimeout
- Render Props
- react-helmet
- Next13
- React 고급안내서
- RTK Query
- background setInterval
- react
- React 공식문서
- React API 참고서
- background: url
- Javascript
- CSS
- Programmers
- React18
- background tab
- getUTCDate
- React 18 Nextjs
- notFound()
- Babel
- context
Archives
- Today
- Total
목록파일명 정렬 (1)
akjfal
[Programmers] [3차] 파일명 정렬
// Head 를 기준으로 정렬 -> 대소문자 구분x // Number로 정렬 // 둘다 같으면 원래 입력순으로 정렬 import java.util.LinkedList; class Solution { class Node implements Comparable{ String head; int num; int idx; Node(String s, int idx){ s = s.toLowerCase(); int[] numIdx = checkIdx(s); this.head = s.substring(0, numIdx[0]); this.num = Integer.parseInt(s.substring(numIdx[0], numIdx[1])); this.idx = idx; // System.out.println(this.h..
알고리즘/programmers
2021. 6. 24. 01:30