Skip to content

Commit b47fdd9

Browse files
authored
Create smallest-subsequence-of-distinct-characters.py
1 parent 5ca4ef5 commit b47fdd9

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Time: O(n)
2+
# Space: O(1)
3+
4+
import collections
5+
6+
7+
class Solution(object):
8+
def smallestSubsequence(self, text):
9+
"""
10+
:type text: str
11+
:rtype: str
12+
"""
13+
count = collections.Counter(text)
14+
15+
lookup, stk = set(), []
16+
for c in text:
17+
if c not in lookup:
18+
while stk and stk[-1] > c and count[stk[-1]]:
19+
lookup.remove(stk.pop())
20+
stk += c
21+
lookup.add(c)
22+
count[c] -= 1
23+
return "".join(stk)

0 commit comments

Comments
 (0)