[99클럽 코테 스터디] 15일차
·
📖 Study
오늘의 학습 키워드스택문제 - 미들러같은 숫자는 싫어풀이 1import java.util.*;public class Solution { public int[] solution(int []arr) { ArrayList list = new ArrayList(); list.add(arr[0]); for(int i = 1; i 풀이 2import java.util.*;public class Solution { public int[] solution(int []arr) { Stack stack = new Stack(); for(int num : arr) { if(stack.size() == 0..
[프로그래머스 Lv0] 잘라서 배열로 저장하기 | 자바
·
📝 Coding Test/Programmers Lv0
문제잘라서 배열로 저장하기 풀이class Solution { public String[] solution(String my_str, int n) { int length = my_str.length() % n == 0 ? my_str.length() / n : my_str.length() / n + 1; String[] answer = new String[length]; for (int i = 0; i
[프로그래머스 Lv1] 완주하지 못한 선수 | 자바
·
📝 Coding Test/Programmers Lv1
문제완주하지 못한 선수풀이 1import java.util.*;class Solution { public String solution(String[] participant, String[] completion) { ArrayList compList = new ArrayList(Arrays.asList(completion)); for(String part : participant) { int idx = compList.indexOf(part); if(idx != -1) { compList.remove(idx); } else { return part; ..