Solved! Leetcode 2696. Minimum String Length After Removing Substrings

Description Minimum String Length After Removing Substrings

You are given a string s consisting only of uppercase English letters.

You can apply some operations to this string where, in one operation, you can remove any occurrence of one of the substrings "AB" or "CD" from s.

Return the minimum possible length of the resulting string that you can obtain.

Note that the string concatenates after removing the substring and could produce new "AB" or "CD" substrings.

Example 1

Example 2

Constraints

  • 1 <= s.length <= 100
  • s consists only of uppercase English letters.

Solution

Time Complexity

O(n), where n is the number of characters in a string

Space Complexity

O(n)

Rate this post

Leave a Reply