| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 문자열
- BFS
- 러닝일지
- dfs
- math
- 이분탐색
- COS PRO
- 투포인터
- SWEA
- 자바
- BOJ
- 운동기록
- 시뮬레이션
- 문제해결
- 코테
- SQL
- greedy
- priorityqueue
- MySQL
- 코딩테스트
- DP
- db
- Java
- binary search
- 건강
- oracle
- 문제풀이
- 백준
- 알고리즘
- 프로그래머스
- Today
- Total
목록2025/10/07 (4)
슈콩
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/17681 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public String[] solution(int n, int[] arr1, int[] arr2) { String[] answer = new String[n]; for(int i=0;i
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/64061 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]import java.util.*;class Solution { public int solution(int[][] board, int[] moves) { int answer = 0; Stack s = new Stack(); for(int num : moves){ for(int i=0;i
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/12930 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public String solution(String s) { String answer = ""; int idx = 0; for(int i=0;i
[문제]http://school.programmers.co.kr/learn/courses/30/lessons/12916 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { boolean solution(String s) { boolean answer = true; int pCnt = 0; int yCnt = 0; for(int i=0;i