일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Gem
- regression
- CS
- java
- linux
- 파이썬
- C++
- SECS
- spring boot
- spotify
- SWEA
- Baekjoon
- MYSQL
- Computer Science
- 백준
- 회원가입
- programmers
- python
- 회귀
- 자바
- SW Expert Academy
- 스포티파이
- Spring
- SECS-II
- modern c++
- c
- Spotify Api
- Spring JPA
- SECS/GEM
- 프로그래머스
Archives
- Today
- Total
비버놀로지
[Programmers 프로그래머스] 12906 같은 숫자는 싫어 본문
728x90
programmers.co.kr/learn/courses/30/lessons/12906
Queue를 이용을 해서 전에 들어간 숫자를 저장해서 다음에 들어오는 숫자가 전의 숫자와 같은지 확인을 해 같으면 지워주는 방식으로 작성했다.
그렇게 큐에 들어간 값을 배열로 꺼내주게 된다.
import java.util.*;
public class Solution {
public int[] solution(int []arr) {
int[] answer;
LinkedList<Integer> que=new LinkedList<Integer>();
int temp=-1;
for (int i = 0; i < arr.length; i++) {
if(arr[i]==temp)continue;
else {
temp=arr[i];
que.add(temp);
}
}
answer=new int[que.size()];
int cnt=0;
for (Integer i : que) {
answer[cnt++]=i;
}
return answer;
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[Programmers 프로그래머스] 12912 두 정수 사이의 합 (0) | 2021.01.07 |
---|---|
[Programmers 프로그래머스] 12910 나누어 떨어지는 숫자 배열 (0) | 2021.01.07 |
[Programmers 프로그래머스] 12903 가운데 글자 가져오기 (0) | 2021.01.07 |
[Programmers 프로그래머스] 68935 3진법 뒤집기 (0) | 2021.01.07 |
[Programmers 프로그래머스] 12901 2016년 (0) | 2021.01.07 |
Comments