LeetCode --- 1047. Remove All Adjacent Duplicates In String 解题报告

Posted 杨鑫newlfe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode --- 1047. Remove All Adjacent Duplicates In String 解题报告相关的知识,希望对你有一定的参考价值。

You are given a string s consisting of lowercase English letters. A duplicate removal consists of choosing two adjacent and equal letters and removing them.

We repeatedly make duplicate removals on s until we no longer can.

Return the final string after all such duplicate removals have been made. It can be proven that the answer is unique.

Example 1:

Input: s = "abbaca"
Output: "ca"
Explanation: 
For example, in "abbaca" we could remove "bb" since the letters are adjacent and equal, and this is the only possible move.  The result of this move is that the string is "aaca", of which only "aa" is possible, so the final string is "ca".

Example 2:

Input:

以上是关于LeetCode --- 1047. Remove All Adjacent Duplicates In String 解题报告的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode 1047. Remove All Adjacent Duplicates In String

LC-1047 Remove All Adjacent Duplicates In String

1047. Remove All Adjacent Duplicates In String

1047. Remove All Adjacent Duplicates In String

1047--Remove All Adjacent Duplicates In String

1047. Remove All Adjacent Duplicates In String做题报告