분류 전체보기 (278) 썸네일형 리스트형 고양이와 개는 몇 마리 있을까? mysql ,oralce 쓸 때 SELECT animal_type, COUNT(animal_type) AS count FROM animal_ins GROUP BY animal_type ORDER BY animal_type 참조변수의 크기는 얼마일까? 결론적으로는 32비트에서는 4byte 64비트 환경에서는 8byte이다. 객체 생성시 참조가 먼저일까? 힙에 인스턴스 생성이 먼저일까? aomee0880.tistory.com/144 최대값과 최소값 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 String solution(String s) { String answer = " "; String[] sArr = s.split(" "); //문자열 쪼개기 List list = new ArrayList(); String isMinus = ""; for(int i =0; i 알아두면 좋은거 반복문 Label : for break label; 로 label 붙인 break 실행 가능 소수 찾기 처음에 생각이 안나서 일단 원시적으로 해봤다. 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 Collection 나누어 떨어지는 수 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.. 이전 1 ··· 25 26 27 28 29 30 31 ··· 35 다음