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