bumpsoo 2025-06-07 05:12:50 +00:00
parent 7763227f07
commit cd0bb8d030

View file

@ -0,0 +1,17 @@
# https://leetcode.com/problems/lexicographically-minimum-string-after-removing-stars
import heapq
class Solution:
def clearStars(self, s: str) -> str:
result = list(s)
h = []
for i in range(len(s)):
if s[i] == '*':
(_, _, origin) = heapq.heappop(h)
result[origin] = ''
result[i] = ''
else:
heapq.heappush(h, (s[i], -i, i))
return ''.join(result)