You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 32 |[Longest Valid Parentheses](https://leetcode.com/problems/longest-valid-parentheses/)| Hard |[LongestValidParentheses.java](src/leetcode/solution/stack/LongestValidParentheses.java)| Stack |
309
-
| 316 |[Remove Duplicate Letters](https://leetcode.com/problems/remove-duplicate-letters/)| Medium |[RemoveDuplicateLetters.java](src/leetcode/solution/stack/RemoveDuplicateLetters.java)| Stack |
310
-
| 394 |[Decode String](https://leetcode.com/problems/decode-string/)| Medium |[DecodeString.java](src/leetcode/solution/stack/DecodeString.java)| Two Stack |
311
-
| 921 |[Minimum Add to Make Parentheses Valid](https://leetcode.com/problems/minimum-add-to-make-parentheses-valid/)| Medium |[MinimumAddToMakeParenthesesValid.java](src/leetcode/solution/stack/MinimumAddToMakeParenthesesValid.java)| Balance |
312
-
| 1249 |[Minimum Remove to Make Valid Parentheses](https://leetcode.com/problems/minimum-remove-to-make-valid-parentheses/)| Medium |[MinimumRemoveToMakeValidParentheses.java](src/leetcode/solution/stack/MinimumRemoveToMakeValidParentheses.java)| Using Stack to save '(' |
| 32 |[Longest Valid Parentheses](https://leetcode.com/problems/longest-valid-parentheses/)| Hard |[LongestValidParentheses.java](src/leetcode/solution/stack/LongestValidParentheses.java)| Stack |
309
+
| 316 |[Remove Duplicate Letters](https://leetcode.com/problems/remove-duplicate-letters/)| Medium |[RemoveDuplicateLetters.java](src/leetcode/solution/stack/RemoveDuplicateLetters.java)| Stack |
310
+
| 394 |[Decode String](https://leetcode.com/problems/decode-string/)| Medium |[DecodeString.java](src/leetcode/solution/stack/DecodeString.java)| Two Stack |
311
+
| 921 |[Minimum Add to Make Parentheses Valid](https://leetcode.com/problems/minimum-add-to-make-parentheses-valid/)| Medium |[MinimumAddToMakeParenthesesValid.java](src/leetcode/solution/stack/MinimumAddToMakeParenthesesValid.java)| Balance |
312
+
| 1047 |[Remove All Adjacent Duplicates In String](https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string/)| Easy |[RemoveAllAdjacentDuplicatesInString.java](src/leetcode/solution/stack/RemoveAllAdjacentDuplicatesInString.java)| Use Stack or StringBuilder. |
313
+
| 1249 |[Minimum Remove to Make Valid Parentheses](https://leetcode.com/problems/minimum-remove-to-make-valid-parentheses/)| Medium |[MinimumRemoveToMakeValidParentheses.java](src/leetcode/solution/stack/MinimumRemoveToMakeValidParentheses.java)| Using Stack to save '(' |
0 commit comments