| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- binary search
- 알고리즘
- COS PRO
- 운동기록
- BFS
- priorityqueue
- 문자열
- DP
- 문제풀이
- 건강
- 문제해결
- dfs
- BOJ
- db
- MySQL
- SQL
- 코테
- Java
- oracle
- SWEA
- 시뮬레이션
- 러닝일지
- greedy
- 코딩테스트
- 프로그래머스
- math
- 이분탐색
- 백준
- 자바
- 투포인터
- Today
- Total
목록2025/10/08 (3)
슈콩
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/42746 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]import java.util.*;class Solution { public String solution(int[] numbers) { String answer = ""; int n = numbers.length; String[] arr = new String[n]; for(int i=0;i (b+a).compareTo(a+b)); for(String s : arr..
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/42748 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]import java.util.*;class Solution { public int[] solution(int[] array, int[][] commands) { int n = commands.length; int[] answer = new int[n]; for(int i=0;i list = new ArrayList(); int start = commands[i][0] ..
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/1844 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]import java.util.*;class Solution { static int[] dr = {-1,1,0,0}; static int[] dc = {0,0,-1,1}; public int solution(int[][] maps) { int answer = -1; int n = maps.length; int m = maps[0].length; boolean[][] ..