Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 코딩테스트
- greedy
- COS PRO
- 건강
- 알고리즘
- DP
- 문자열
- SWEA
- 이분탐색
- MySQL
- priorityqueue
- 러닝일지
- 백준
- 문제해결
- oracle
- 프로그래머스
- 코테
- SQL
- Java
- 문제풀이
- binary search
- math
- 운동기록
- BFS
- BOJ
- 시뮬레이션
- 자바
- 투포인터
- dfs
- db
Archives
- Today
- Total
목록2026/01/04 (2)
슈콩
COS PRO 1급 JAVA 단어를 순서대로 적으세요
[소스 코드]import java.util.*;class Main { public int solution(int K, String[] words) { int answer = 1; int len = 0; for(int i=0;i
카테고리 없음
2026. 1. 4. 15:22
COS PRO 1급 JAVA 꽃피는 봄이 언제 오나요
[소스 코드]import java.util.*;class Main { public int[] dr = {-1,1,0,0}; public int[] dc = {0,0,-1,1}; public int solution(int n, int[][] garden) { int answer = 0; Queue q = new LinkedList(); boolean[][] visit = new boolean[n][n]; for(int i=0;i=n || nc=n || visit[nr][nc]) continue; visit[nr][nc] = true; q.offer(new int[]{nr,nc}); check =..
카테고리 없음
2026. 1. 4. 00:08