https://leetcode.com/problems/decode-string/ Decode String - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 스택 자료구조를 활용하기 적절한 문제이다. 숫자와 문자를 각각의 변수에 저장하고 있다가 여는 괄호를 만나면 스택에 담는다. 닫는 괄호를 만나면 저장해뒀던 숫자와 문자를 꺼낸다. 현재의 문자는 스택에서 꺼낸 숫자대로 반복해주고 스택에서 꺼낸 이전의 문자는 반복 없이 스트링 변수에 저장해준다. 주의해야 할 점은 ..