💡 나의 풀이 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 { public int[] solution(int[] arr, int divisor) { int[] answer = {}; ArrayList array = new ArrayList(); for(int i = 0; i
💡 나의 풀이 채점 결과 정확성: 100.0 합계: 100.0 / 100.0 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 import java.util.*; class Solution { public int[] solution(int[] answers) { int[] answer = {}; int first[] = {1,2,3,4,5}; //규칙 반복(이하 동일) int second[] = {2,1,2,3,2,4,2,5}; int third[] = {3,3,1,1,2,2,4,4,5,5}; int all[] = new int[3]; //3명 비교 for(int i = 0..
💡 나의 풀이 중요한 점은 문자열의 인덱스 순서가 아니라 단어의 공백을 기준으로 짝/홀을 구분하여 대문자, 소문자로 바꾸는 것이다. 채점 결과 정확성: 100.0 합계: 100.0 / 100.0 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 class Solution { public String solution(String s) { String answer = ""; String str[] = s.split(""); String space = " "; int cnt = 0; for(int i = 0; i
💡 나의 풀이 채점 결과 정확성: 100.0 합계: 100.0 / 100.0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 class Solution { public boolean solution(String s) { boolean answer = false; int length = s.length(); if(length == 4 || length == 6){ answer = true; } for(int i = 0; i
💡 나의 풀이 Arrays.sort(배열)은 오름차순 정렬로 만들어 주는 것이고, Collections.reverse(Arrays.asList(배열)); 은 일반 배열을 리스트로 변환해준 뒤 reverse 메소드를 활용하여 반전시키는 것이다. String.join("추가할 문자", 배열); 은 예를 들어 String.join(",",str)이면 "바나나,사과,망고" 이런식으로 ','가 추가되어 원소들이 나열된다. 채점 결과 정확성: 100.0 합계: 100.0 / 100.0 1 2 3 4 5 6 7 8 9 10 11 12 13 import java.util.*; class Solution { public String solution(String s) { String answer = ""; String s..