[프로그래머스] 짝지어 제거하기
class Solution { public int solution(String s) { int answer = 0; while(true){ String temp = s; for(int i=1; i bbaa > aa > null 이 되도록 s를 업데이트 시켜주며 null이 되면 1, 끝까지 읽었는데 null이아니면 0 이 되도록 짰다. 결과는 시간초과. import java.util.*; class Solution { public int solution(String s) { int answer = 0; Stack st = new Stack(); st.push(s.charAt(0)); for(int i=1; i
2020.04.10