Skip to content

Commit a2fcc81

Browse files
committed
Sync LeetCode submission Runtime - 298 ms (66.67%), Memory - 18.1 MB (93.97%)
1 parent 3556c43 commit a2fcc81

File tree

2 files changed

+65
-0
lines changed

2 files changed

+65
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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>&nbsp;</p>
8+
<p><strong class="example">Example 1:</strong></p>
9+
10+
<pre>
11+
<strong>Input:</strong> s = &quot;le<u>e</u>etcode&quot;
12+
<strong>Output:</strong> &quot;leetcode&quot;
13+
<strong>Explanation:</strong>
14+
Remove an &#39;e&#39; from the first group of &#39;e&#39;s to create &quot;leetcode&quot;.
15+
No three consecutive characters are equal, so return &quot;leetcode&quot;.
16+
</pre>
17+
18+
<p><strong class="example">Example 2:</strong></p>
19+
20+
<pre>
21+
<strong>Input:</strong> s = &quot;<u>a</u>aab<u>aa</u>aa&quot;
22+
<strong>Output:</strong> &quot;aabaa&quot;
23+
<strong>Explanation:</strong>
24+
Remove an &#39;a&#39; from the first group of &#39;a&#39;s to create &quot;aabaaaa&quot;.
25+
Remove two &#39;a&#39;s from the second group of &#39;a&#39;s to create &quot;aabaa&quot;.
26+
No three consecutive characters are equal, so return &quot;aabaa&quot;.
27+
</pre>
28+
29+
<p><strong class="example">Example 3:</strong></p>
30+
31+
<pre>
32+
<strong>Input:</strong> s = &quot;aab&quot;
33+
<strong>Output:</strong> &quot;aab&quot;
34+
<strong>Explanation:</strong> No three consecutive characters are equal, so return &quot;aab&quot;.
35+
</pre>
36+
37+
<p>&nbsp;</p>
38+
<p><strong>Constraints:</strong></p>
39+
40+
<ul>
41+
<li><code>1 &lt;= s.length &lt;= 10<sup>5</sup></code></li>
42+
<li><code>s</code> consists only of lowercase English letters.</li>
43+
</ul>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Approach 1: Insert characters in a new string
2+
3+
# Time: O(n)
4+
# Space: O(n)
5+
6+
class Solution:
7+
def makeFancyString(self, s: str) -> str:
8+
prev = s[0]
9+
freq = 1
10+
ans = s[0]
11+
12+
for i in range(1, len(s)):
13+
if s[i] == prev:
14+
freq += 1
15+
else:
16+
prev = s[i]
17+
freq = 1
18+
19+
if freq < 3:
20+
ans += s[i]
21+
22+
return ans

0 commit comments

Comments
 (0)