[LeetCode] 2390. Removing Stars From a String

김민우·2022년 9월 18일
0

알고리즘

목록 보기
11/189

- Problem

2390. Removing Stars From a String

- 내 풀이

class Solution:
    def removeStars(self, s: str) -> str:
        stk = []
        
        for i in s:
            stk.pop() if i == "*" and stk else stk.append(i)
        
        return "".join(stk)

- 결과

profile
Pay it forward.

0개의 댓글