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
Copy file name to clipboardexpand all lines: solution/1900-1999/1957.Delete Characters to Make Fancy String/README_EN.md
+41-21
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,13 @@ No three consecutive characters are equal, so return "aabaa".
68
68
69
69
<!-- solution:start -->
70
70
71
-
### Solution 1
71
+
### Solution 1: Simulation
72
+
73
+
We can traverse the string $s$ and use an array $\textit{ans}$ to record the current answer. For each character $c$, if the length of $\textit{ans}$ is less than $2$ or the last two characters of $\textit{ans}$ are not equal to $c$, we add $c$ to $\textit{ans}$.
74
+
75
+
Finally, we concatenate the characters in $\textit{ans}$ to get the answer.
76
+
77
+
The time complexity is $O(n)$, and the space complexity is $O(n)$. Here, $n$ is the length of the string $s$.
72
78
73
79
<!-- tabs:start -->
74
80
@@ -79,10 +85,9 @@ class Solution:
79
85
defmakeFancyString(self, s: str) -> str:
80
86
ans = []
81
87
for c in s:
82
-
iflen(ans) >1and ans[-1] == ans[-2] == c:
83
-
continue
84
-
ans.append(c)
85
-
return''.join(ans)
88
+
iflen(ans) <2or ans[-1] != c or ans[-2] != c:
89
+
ans.append(c)
90
+
return"".join(ans)
86
91
```
87
92
88
93
#### Java
@@ -93,10 +98,9 @@ class Solution {
93
98
StringBuilder ans =newStringBuilder();
94
99
for (char c : s.toCharArray()) {
95
100
int n = ans.length();
96
-
if (n >1&&ans.charAt(n -1) == c && ans.charAt(n -2)== c) {
97
-
continue;
101
+
if (n <2|| c !=ans.charAt(n -1) || c != ans.charAt(n -2)) {
102
+
ans.append(c);
98
103
}
99
-
ans.append(c);
100
104
}
101
105
return ans.toString();
102
106
}
@@ -112,8 +116,9 @@ public:
112
116
string ans = "";
113
117
for (char& c : s) {
114
118
int n = ans.size();
115
-
if (n > 1 && ans[n - 1] == c && ans[n - 2] == c) continue;
116
-
ans.push_back(c);
119
+
if (n < 2 || ans[n - 1] != c || ans[n - 2] != c) {
120
+
ans += c;
121
+
}
117
122
}
118
123
return ans;
119
124
}
@@ -126,16 +131,29 @@ public:
126
131
func makeFancyString(s string) string {
127
132
ans := []rune{}
128
133
for _, c := range s {
129
-
n := len(ans)
130
-
if n > 1 && ans[n-1] == c && ans[n-2] == c {
131
-
continue
134
+
if n := len(ans); n < 2 || c != ans[n-1] || c != ans[n-2] {
0 commit comments