일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- background: url
- CSS
- background setttimeout
- RTK Query
- hook
- Javascript
- react
- react hook
- React18
- Render Props
- React 고급 안내서
- Next13
- Nextjs
- next13 head
- React 18 Nextjs
- Babel
- background setInterval
- Programmers
- 고급안내서
- getUTCDate
- react-helmet
- context
- React 18
- codingtest
- Nextjs React 18
- background tab
- React 공식문서
- notFound()
- React API 참고서
- React 고급안내서
Archives
- Today
- Total
akjfal
[Programmers] 짝지어 제거하기 본문
import java.util.Stack;
class Solution{
public int solution(String s){
int answer = 1;
int length = s.length();
Stack<Character> stack = new Stack<>();
stack.push(s.charAt(0));
int idx = 1;
while(idx < length){
char alpha = s.charAt(idx);
if(stack.isEmpty()){
stack.push(alpha);
}else if(alpha == stack.peek()){
stack.pop();
}else{
stack.push(alpha);
}
idx++;
}
if(!stack.isEmpty())
answer = 0;
return answer;
}
}
시간초과 나서 새로운 방법이 있는줄알고 한참 헤맸는데 그냥 조건을 조금더 주면되는 거였다...
'알고리즘 > programmers' 카테고리의 다른 글
[Programmers] 신규 아이디 추천 (0) | 2021.07.03 |
---|---|
[Programmers] [3차] n진수 게임 (0) | 2021.07.03 |
[Programmers] 올바른 괄호 (0) | 2021.06.24 |
[Programmers] [3차] 파일명 정렬 (0) | 2021.06.24 |
[Programmer] [3차] 압축 (0) | 2021.06.23 |
Comments