99클럽 코테 스터디 15일차 TIL + 스택/큐
2024. 11. 11. 14:30ㆍAlgorithm Problem Solving
1. 알고리즘! 생각해보자
1) 스택이 비어있거나 top에 있는 것과 동일하지 않을 경우, stack push
2. 해결 코드
import java.util.Stack;
public class Solution {
public int[] solution(int[] arr) {
// 스택 생성
Stack<Integer> stack = new Stack<>();
// arr 순회
for (int i : arr) {
// 스택이 비어있거나 i가 직전에 담긴 값과 다를 경우 스택에 i 넣기
if (stack.empty() || !stack.peek().equals(i)) {
stack.push(i);
}
}
// stack to array
return stack.stream().mapToInt(i -> i).toArray();
}
}
3. 레퍼런스
'Algorithm Problem Solving' 카테고리의 다른 글
99클럽 코테 스터디 18일차 TIL + 스택/큐 (1) | 2024.11.14 |
---|---|
99클럽 코테 스터디 17일차 TIL + 스택/큐 (1) | 2024.11.13 |
99클럽 코테 스터디 13일차 TIL + 스택/큐 (1) | 2024.11.09 |
99클럽 코테 스터디 12일차 TIL + 스택/큐 (0) | 2024.11.08 |
99클럽 코테 스터디 10일차 TIL + 해쉬 (1) | 2024.11.06 |