코테/프로그래머스 (36) 썸네일형 리스트형 소수 찾기 처음에 생각이 안나서 일단 원시적으로 해봤다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 class Solution { public int solution(int n) { int answer = 0; int count =0; for(int i = 2 ; i 나누어 떨어지는 수 1234567891011121314151617181920212223242526272829import java.util.*;class Solution { public int[] answer(List list){ int count =0; if(list.isEmpty()){ int[] answer={-1}; return answer; }else{ int[] answer = new int[list.size()]; for(int i : list){ answer[count] =list.get(count); count++; } Arrays.sort(answer); return answer; } } public int[] solution(int[] arr, int divisor) { List list = new Arr.. 어린 동물 찾기 sql로 할때 SELECT animal_id,name FROM animal_ins WHERE intake_condition 'aged' ORDER BY animal_id 혹은 SELECT animal_id,name FROM animal_ins WHERE intake_condition !='aged' ORDER BY animal_id oracle로 할 때 SELECT animal_id,name FROM animal_ins WHERE intake_condition !='Aged' ORDER BY animal_id 비밀지도 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 class Solution { public String[] solution(int n, int[] arr1, int[] arr2) { int arrLength = arr1.length; String[] answer = new String[arrLength]; int[] arrBitSum = new int[arrLength]; for(int i = 0; i0){ String s=""; for(int i =0; i 여러 기준으로 정렬하기 sql, oracle 일때 SELECT animal_id, name, datetime FROM animal_ins ORDER BY name ASC, datetime DESC 이름 있는 동물 아이디 sql로 할 때 1. SELECT animal_id FROM animal_ins WHERE NOT name IS NULL 2. SELECT animal_id FROM animal_ins WHERE name LIKE '%%' oracle로 할 때 1.SELECT animal_id FROM animal_ins WHERE name IS NOT NULL ORDER BY animal_id 2.SELECT animal_id FROM animal_ins WHERE name LIKE '%%' ORDER BY animal_id 상위 n개 레코드 sql로 할때 SELECT name FROM animal_ins ORDER BY datetime LIMIT 1; oracle로 할때 SELECT name FROM (SELECT name FROM animal_ins ORDER BY animal_ins) WHERE ROWNUM =1; lv1 완주하지 못한 선수 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 import java.util.*; class Solution { public String solution(String[] participant, String[] completion) { String answer = ""; Arrays.sort(participant); Arrays.sort(completion); //이러면 둘다 정렬이 된다. for(int i =0; i 이전 1 2 3 4 5 다음