본문 바로가기
알고리즘/프로그래머스 1단계

[프로그래머스] 같은 숫자는 싫어

by lanuarius19 2022. 4. 25.
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

댓글