Skip to content

Create 2696. Minimum String Length After Removing Substrings #607

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions 2696. Minimum String Length After Removing Substrings
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
class Solution {
public:
int minLength(string s) {
int i = 0;
int flag = 0;
while (true) {
i = 0;
flag = 0;
while (i < s.size() - 1) {
if (s[i] == 'A' && s[i + 1] == 'B') {
s.erase(i, 2);
flag = 1;
} else if (s[i] == 'C' && s[i + 1] == 'D') {
s.erase(i, 2);
flag = 1;
}
if (s.size() < 2)
return s.size();
i++;
}
if (flag == 0)
break;
}
return s.size();
}
};
Loading