|
| 1 | +<p>A <strong>fancy string</strong> is a string where no <strong>three</strong> <strong>consecutive</strong> characters are equal.</p> |
| 2 | + |
| 3 | +<p>Given a string <code>s</code>, delete the <strong>minimum</strong> possible number of characters from <code>s</code> to make it <strong>fancy</strong>.</p> |
| 4 | + |
| 5 | +<p>Return <em>the final string after the deletion</em>. It can be shown that the answer will always be <strong>unique</strong>.</p> |
| 6 | + |
| 7 | +<p> </p> |
| 8 | +<p><strong class="example">Example 1:</strong></p> |
| 9 | + |
| 10 | +<pre> |
| 11 | +<strong>Input:</strong> s = "le<u>e</u>etcode" |
| 12 | +<strong>Output:</strong> "leetcode" |
| 13 | +<strong>Explanation:</strong> |
| 14 | +Remove an 'e' from the first group of 'e's to create "leetcode". |
| 15 | +No three consecutive characters are equal, so return "leetcode". |
| 16 | +</pre> |
| 17 | + |
| 18 | +<p><strong class="example">Example 2:</strong></p> |
| 19 | + |
| 20 | +<pre> |
| 21 | +<strong>Input:</strong> s = "<u>a</u>aab<u>aa</u>aa" |
| 22 | +<strong>Output:</strong> "aabaa" |
| 23 | +<strong>Explanation:</strong> |
| 24 | +Remove an 'a' from the first group of 'a's to create "aabaaaa". |
| 25 | +Remove two 'a's from the second group of 'a's to create "aabaa". |
| 26 | +No three consecutive characters are equal, so return "aabaa". |
| 27 | +</pre> |
| 28 | + |
| 29 | +<p><strong class="example">Example 3:</strong></p> |
| 30 | + |
| 31 | +<pre> |
| 32 | +<strong>Input:</strong> s = "aab" |
| 33 | +<strong>Output:</strong> "aab" |
| 34 | +<strong>Explanation:</strong> No three consecutive characters are equal, so return "aab". |
| 35 | +</pre> |
| 36 | + |
| 37 | +<p> </p> |
| 38 | +<p><strong>Constraints:</strong></p> |
| 39 | + |
| 40 | +<ul> |
| 41 | + <li><code>1 <= s.length <= 10<sup>5</sup></code></li> |
| 42 | + <li><code>s</code> consists only of lowercase English letters.</li> |
| 43 | +</ul> |
0 commit comments