프로그래머스 자바 썸네일형 리스트형 [Programmers] Level1. 같은 숫자는 싫어 (Java) Level1. 같은 숫자는 싫어 문제설명 ) 풀이Code ) import java.util.*; public class Solution { public int[] solution(int []arr) { int listCnt = 0; // list 가 담겨질 index 카운트 ArrayList list = new ArrayList(); // 비교할 값들을 담을 list list.add(arr[0]); // 초기에 arr 첫번째 인덱스의 값 넣어주기 for(int i=1; i 더보기 [Programmers] Level1. 체육복 (Java) Level1. 체육복 문제설명 ) 풀이Code ) 더보기 class Solution { public int solution(int n, int[] lost, int[] reserve) { int answer = 0; int cnt = 0; for (int i=0; i 더보기 두 개 뽑아서 더하기 import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class Solution { public int[] solution(int[] numbers) { List list = new ArrayList(); for (int i=0; i 더보기 이전 1 다음