IT STUDY LOG
[JAVA] 프로그래머스: 같은 숫자는 싫어 본문
# 문제 내용
# 알고리즘 분류
- 스택/큐
# 풀이
import java.util.*;
public class Solution {
public int[] solution(int []arr) {
List<Integer> answer = new ArrayList<Integer>();
answer.add(arr[0]);
for (int i = 1; i < arr.length; i++) {
if (arr[i-1] == arr[i]) {
continue;
} else {
answer.add(arr[i]);
}
}
return answer.stream()
.mapToInt(Integer::intValue)
.toArray();
}
}
'computer science > coding test' 카테고리의 다른 글
[Python] 백준 12851번: 숨바꼭질2 (0) | 2023.04.25 |
---|---|
[MySQL] 프로그래머스: 과일로 만든 아이스크림 고르기 (0) | 2023.04.25 |
[MySQL] 프로그래머스: 3월에 태어난 여성 회원 목록 출력하기 (0) | 2023.04.24 |
[JAVA] 프로그래머스: 폰켓몬 (0) | 2023.04.24 |
[Python] 백준 12026번: BOJ 거리 (0) | 2023.04.21 |
Comments