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