https://leetcode.com/problems/removing-stars-from-a-string/submissions/1298687817/ 1. 문제 및 접근 2390. Removing Stars From a StringString이 주어지면 그 안에 있는 *가 들어온 만큼 왼쪽 char를 지우기순서가 중요하다 * 나오면 바로 왼쪽 꺼 지워주기전부 다 유효하다. Input: s = "leet**cod*e"Output: "lecoe" 왼쪽이니까 stack에 넣으면서 *이 나오면 다음 인덱스로 가면 될 듯 Note:The input will be generated such that the operation is always possible.It can be shown that the r..