LeetCode 0316. Remove Duplicate Letters Solution in Java, Python, C++, JavaScript, Go & Rust | Explanation + Code

CoderIndeed
0
0316. Remove Duplicate Letters

Description

Given a string s, remove duplicate letters so that every letter appears once and only once. You must make sure your result is the smallest in lexicographical order among all possible results.

 

Example 1:

Input: s = "bcabc"
Output: "abc"

Example 2:

Input: s = "cbacdcbc"
Output: "acdb"

 

Constraints:

  • 1 <= s.length <= 104
  • s consists of lowercase English letters.

 

Note: This question is the same as 1081: https://leetcode.com/problems/smallest-subsequence-of-distinct-characters/

Solutions

Solution 1: Stack

We use an array last to record the last occurrence of each character, a stack to save the result string, and an array vis or an integer variable mask to record whether the current character is in the stack.

Traverse the string s, for each character c, if c is not in the stack, we need to check whether the top element of the stack is greater than c. If it is greater than c and the top element of the stack will appear later, we pop the top element of the stack and push c into the stack.

Finally, concatenate the elements in the stack into a string and return it as the result.

The time complexity is O(n), and the space complexity is O(n). Where n is the length of the string s.

PythonJavaC++Go
class Solution: def removeDuplicateLetters(self, s: str) -> str: last = {c: i for i, c in enumerate(s)} stk = [] vis = set() for i, c in enumerate(s): if c in vis: continue while stk and stk[-1] > c and last[stk[-1]] > i: vis.remove(stk.pop()) stk.append(c) vis.add(c) return ''.join(stk)(code-box)

Solution 2

PythonGo
class Solution: def removeDuplicateLetters(self, s: str) -> str: count, in_stack = [0] * 128, [False] * 128 stack = [] for c in s: count[ord(c)] += 1 for c in s: count[ord(c)] -= 1 if in_stack[ord(c)]: continue while len(stack) and stack[-1] > c: peek = stack[-1] if count[ord(peek)] < 1: break in_stack[ord(peek)] = False stack.pop() stack.append(c) in_stack[ord(c)] = True return ''.join(stack)(code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !