일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Render Props
- Javascript
- React 18
- background: url
- background tab
- CSS
- context
- 고급안내서
- Programmers
- notFound()
- React 18 Nextjs
- Nextjs
- React API 참고서
- React18
- Nextjs React 18
- React 공식문서
- next13 head
- react-helmet
- hook
- codingtest
- React 고급 안내서
- React 고급안내서
- background setttimeout
- Next13
- background setInterval
- Babel
- react hook
- getUTCDate
- react
- RTK Query
Archives
- Today
- Total
목록알고리즘 (33)
akjfal
프로그래머스 1829번 java
Programmers 코딩테스트 level 2 - 1829번 카카오프렌즈 컬러링북도움말 java로 작성했습니다. 생각한 점 1. 코드를 작성할대 2차원 배열을 그린다고하면 좌표처럼 생각해 x변수는 넓이, y변수는 높이를 나타냅니다. 2. bfs를 사용했습니다. import java.util.*; class Solution { static int max; static int ans_num; static Queue q; static class Node { public T x; public T y; public Node(T y, T x) { this.x = x; this.y = y; } } public int[] solution(int m, int n, int[][] picture) { // m : heigh..
알고리즘/programmers
2021. 1. 14. 01:16