짝지어 제거하기는, 알파벳 소문자로 이루어진 문자열을 가지고 시작합니다. 먼저 문자열에서 같은 알파벳이 2개 붙어 있는 짝을 찾습니다. 그다음, 그 둘을 제거한 뒤, 앞뒤로 문자열을 이어 붙입니다. 이 과정을 반복해서 문자열을 모두 제거한다면 짝지어 제거하기가 종료됩니다. 문자열 S가 주어졌을 때, 짝지어 제거하기를 성공적으로 수행할 수 있는지 반환하는 함수를 완성해 주세요. 성공적으로 수행할 수 있으면 1을, 아닐 경우 0을 리턴해주면 됩니다.
예를 들어, 문자열 S = baabaa 라면
b aa baa → bb aa → aa →
의 순서로 문자열을 모두 제거할 수 있으므로 1을 반환합니다.
제한사항
문자열의 길이 : 1,000,000이하의 자연수
문자열은 모두 소문자로 이루어져 있습니다.
출처 - 프로그래머스
풀이
주어진 문자열을 캐릭터로 변환해 스택에 하나씩 삽입합니다.
삽입과 동시에 같은 캐릭터가 짝지어 있는지 검사합니다.
만약 짝지어 있다면 원소를 제거합니다.
import java.util.*;
class Solution
{
public int solution(String s)
{
// 문자열을 캐릭터 배열로 변환
char[] c = s.toCharArray();
ArrayList<Character> list = new ArrayList<>();
// 캐릭터를 하나씩 리스트에 삽입
for(char _c : c){
Add(list, _c);
}
// 만약 리스트가 비었다면 짝지거 제거 완료
if(list.isEmpty()){
return 1;
}
else {
return 0;
}
}
// 리스트에 캐릭터 하나씩 삽입하는 함수
public static void Add(ArrayList _list, char _c){
_list.add(_c);
// 만약 리스트의 길이가 2보다 크고 && 마지막 두 원소가 같은 캐릭터라면
if(_list.size() > 1 && (_list.get(_list.size() - 2) == _list.get(_list.size() - 1))){
// 마지막 두 원소 제거
_list.remove(_list.size() - 1);
_list.remove(_list.size() - 1);
}
}
}
짱짱맨 호출에 출동했습니다!!
Congratulations @dangen! You received a personal award!
You can view your badges on your Steem Board and compare to others on the Steem Ranking
Do not miss the last post from @steemitboard:
Vote for @Steemitboard as a witness to get one more award and increased upvotes!
Congratulations @dangen! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) :
Your next target is to reach 50 replies.
You can view your badges on your board and compare yourself to others in the Ranking
If you no longer want to receive notifications, reply to this comment with the word
STOP
Support the HiveBuzz project. Vote for our proposal!