Programmers/Level2 (76) 썸네일형 리스트형 입양 시각 구하기(1) 1 2 select hour(datetime), count(*) from animal_outs where hour(datetime) between 9 and 19 group by hour(datetime) order by hour(datetime); cs 시간을 잘 비교할 줄 알아야 한다. 동물 수 구하기 1 select count(*) from animal_ins; cs count 함수를 알고 있는지 확인하는 문제이다. 중복 제거하기 1 select count(*) from (select distinct name from animal_ins) as t where name is not null; cs 서브쿼리를 통해 중복을 제거한 결과에서 처리해야 한다. n^2 배열 자르기 123456789101112131415161718class Solution { public long[] solution(int n, long left, long right) { int len = (int) right - (int) left + 1; long[] answer = new long[len]; long pos = left; for(int i=0;i b) answer[i] = a; else answer[i] = b; pos++; } return answer; }}Colored by Color Scriptercs 피로도 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 import java.util.*; class Solution { static int count = 0; public static void dfs(ArrayList allList, ArrayList res, int k){ if(res.size() > count) { count = res.size(); } for(int i=0;i 전력망을 둘로 나누기 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 import java.util.*; class Solution { private static int sum = 0; public int solution(int n, int[][] wires) { int answer = n; ArrayList list = new ArrayList(); // 노드 생성 for(int i=0;i 모음 사전 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 import java.util.*; class Solution { public int solution(String word) { int answer = 0; int[] add = new int[5]; add[4] = 1; for(int i=3;i>=0;i--){ add[i] = add[i+1] * 5 + 1; } for(int i=0;i 가장 먼 노드 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 import java.util.*; class Solution { private static ArrayList listGraph = new ArrayList(); private static int MAX_VALUE = 20001; private static int maxDistance = -1; // 그래프 .. 이전 1 2 3 4 5 ··· 10 다음