728x90
프로그래머스 1단계
같은 숫자는 싫어
https://programmers.co.kr/learn/challenges
문제 설명
풀이
import java.util.*;
public class Solution {
public int[] solution(int []arr) {
ArrayList<Integer> list = new ArrayList<Integer>();
int checkNum = 10;
for(int i : arr) {
if(checkNum != i) {
list.add(i);
checkNum = i;
}
}
int[] answer = new int[list.size()];
for(int i=0; i<answer.length; i++) {
answer[i] = list.get(i);
}
return answer;
}
}
728x90
'알고리즘 > 프로그래머스 1단계' 카테고리의 다른 글
[프로그래머스] 3진법 뒤집기 (0) | 2022.06.05 |
---|---|
[프로그래머스] 핸드폰 번호 가리기 (1) | 2022.04.25 |
[프로그래머스] 음양 더하기 (1) | 2022.04.25 |
[프로그래머스] 제일 작은 수 제거하기 (0) | 2022.04.25 |
[프로그래머스] 부족한 금액 계산하기 (0) | 2022.04.25 |
댓글