이번 주는 STACK 에 대해 반복적으로 공부했다.먼저 백준 문제 중에 '에디터' 문제를 풀어보았다.1406번: 에디터 (acmicpc.net) 1차 시도는 기존에 매일 하던 for 문으로 구현을 했는데, 제출하자마자 시간 초과 뜸..!!1차 시도 - 시간 초과 - for 문 구현N = list(input())M = int(input())current = len(N) + 1for i in range(M) : x = input().split() if x[0] == 'L' : if current != 1 : current -= 1 elif x[0] == 'D' : if current != len(N) + 1 : current +..