블로그
-
타겟넘버
.*; class Solution { public int solution(int[] numbers, int target) { int answer = 0; Queue q = new LinkedList
blog.naver.com · 2025.08.04
-
네트워크
.*; class Solution { public int solution(int n, int[][] computers) { int answer = 0; boolean[] visited
blog.naver.com · 2025.08.04
-
행렬테두리 회전하기
.*; class Solution { public int[] solution(int rows, int columns, int[][] queries) { int[] answer = new
blog.naver.com · 2025.07.04
-
지게차와 크레인
.*; class Solution { public int solution(String[] storage, String[] requests) { int size_y = storage.length
blog.naver.com · 2025.05.22
-
[PCCP 기출문제] 2번 / 석유 시추
.*; class Solution { public int solution(int[][] land) { Map oil = new HashMap<>(); // 석유매장지 ,
blog.naver.com · 2025.05.23
-
충돌위험찾기
.*; class Solution { public int solution(int[][] points, int[][] routes) { Map> timeMap = new HashMap
blog.naver.com · 2025.05.21
-
양궁대회
.*; class Solution { public int[] solution(int n, int[] info) { Queue> queue = new LinkedList<&
blog.naver.com · 2025.05.09
-
프로그래머스 개인정보 수집 유효기간
.*; import java.time.LocalDate; import java.time.format.DateTimeFormatter; class Solution { public int [] solution(String today, String[] terms, String[] privacies) throws Exception{ DateTimeFormatter formatter
blog.naver.com · 2025.04.17
-
[PCCP 기출문제] 2번 / 퍼즐 게임 챌린지
.*; class Solution { public int solution(int[] diffs, int[] times, long limit) { int min = diffs[0];
blog.naver.com · 2025.04.23
-
SAS - 실험계획법
yij = M + Ti + eij ( M : 전체평균 , Ti : i번째 그룹효과(처리효과)) H0 = M1 = M2 = M3 = *** = 0 proc glm data = ~ ; class 변수(이산형이라고 선언) ; model y = x (/ solution : 모수 추정) ; 모수추정할 시 Estimate에 B 붙는데 이는 Bias 즉 믿지말라는 run; 표현이며
blog.naver.com · 2017.07.24