일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- react
- getUTCDate
- Render Props
- Babel
- React 18
- Nextjs
- notFound()
- codingtest
- Nextjs React 18
- react hook
- 고급안내서
- Javascript
- background tab
- RTK Query
- React API 참고서
- React 공식문서
- React 고급 안내서
- background setInterval
- next13 head
- react-helmet
- React 18 Nextjs
- Next13
- React18
- background: url
- React 고급안내서
- CSS
- context
- background setttimeout
- hook
- Programmers
- Today
- Total
목록IT (167)
akjfal
. // 1
. // 1. 1개가 유일성인 경우 확인 // 2. 1개씩 더해가면서 유일성 체크 // 2.1 유일성이 나오면 추가로 붙는 키들 더해서 wrong에 넣기 import java.util.HashMap; import java.util.ArrayList; import java.util.Iterator; import java.util.Arrays; class Solution { int row, column; String[][] relation; HashMap right = new HashMap(); HashMap wrong = new HashMap(); public int solution(String[][] relation) { int answer = 0; this.relation = relation; row ..
// 1
class Solution { int[][] map; int[] answer; public int[] solution(int rows, int columns, int[][] queries) { answer = new int[queries.length]; map = new int[rows][columns]; int num = 0; for(int i = 0; i < rows; i++){ for(int j = 0; j < columns; j++){ map[i][j] = ++num; } } for(int i = 0; i < queries.length; i++){ for(int j = 0; j < 4; j++){ queries[i][j]--; } rotate(queries[i], i); } return answe..
// 1.a,b를 2단어 씩으로 쪼개며 저장 - "[a-z][a-z]"에 일치하지 않는 것을 제외 // 2. union에 b를 통째로 옮김 // 3. b와 a를 비교해 key값이 일치하는 경우 // 3.1 intersection에 작은 값을 저장 // 3.2 union에 큰 값을 저장 // 4. 일치하지 않을 경우 union에만 저장 // 5. iterator를 통해 intersection과 union의 value 합 구하기 import java.util.HashMap; import java.util.Iterator; class Solution { public int solution(String str1, String str2) { int answer = 0; str1 = str1.toLowerCase(..
// num stack is order // 1. num[100,000] // 2. answer.length = substring(2, n-2) and remove },{ // 3. num[charAt(index)]++ // 4. answer = [n, n-1 ...] import java.util.HashMap; import java.util.Iterator; class Solution { public int[] solution(String s) { int[] num = new int[100001]; s = s.substring(2, s.length()-2); String[] ansLength = s.split("\\}"); int[] answer = new int[ansLength.length]; i..
// 1. arraylist[num] // 2. arraylist[cal] // 3. 6번 진행 // 4. cal first -> a[0] = a[0] + a[1] // 4.1 연산한 수에는 none을 넣어 연산이 완료되었음을 입력 // 4.2 num.size는 cal.size+1이고 cal[index] 연산시 num[cal.index+1]은 반드시 숫자임 // 5. num[cal.index+1]과 none이 아닌 수를 앞에서 while을 통해 찾아 연산 import java.util.ArrayList; class Solution { static boolean[] calculate = new boolean[3]; // + - * static ArrayList numList; static ArrayList..
// 1. String을 ArrayList로 전환하기 // 2. Index를 이동하며 Stack에 쌓기 // 3. Stack에 쌓인 데이터를 체크하기 import java.util.Stack; import java.util.ArrayList; import java.util.Arrays; class Solution { public int solution(String s) { int answer = 0; ArrayList list = new ArrayList(Arrays.asList(s.split(""))); for(int i = 0; i < list.size(); i++){ Stack stack = new Stack(); int index = i; for(int j = 0; j < list.size(); ..