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