일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- codingtest
- react hook
- Next13
- context
- React 고급 안내서
- 고급안내서
- React 고급안내서
- React 18 Nextjs
- hook
- Babel
- background: url
- Javascript
- Nextjs
- React18
- notFound()
- React 공식문서
- Nextjs React 18
- background tab
- background setttimeout
- background setInterval
- React 18
- react-helmet
- React API 참고서
- RTK Query
- getUTCDate
- CSS
- Programmers
- Render Props
- next13 head
- react
Archives
- Today
- Total
목록전화번호 목록 (1)
akjfal
[Backjoon] 5052번 전화번호 목록
import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Arrays; import java.util.Comparator; class Main { static class Node{ int n; int depth; boolean isLast = false; Node[] child; Node(int n, int depth){ this.n = n; this.depth = depth; child = new Node[10]; } void inputChild(Node n, int idx){ child[idx] = n; } void checkLast(){ this.isLast =..
알고리즘/backjoon
2021. 6. 24. 15:58