Minimum Length of String After Operations - Practice Coding | SlaveCode
0
0123456789
0
0123456789
:
0
0123456789
0
0123456789
3223. Minimum Length of String After Operations
Medium
30 Points
Hash Table
String
Counting
You are given a string s.
You can perform the following process on s any number of times:
Return the minimum length of the final string s that you can achieve.
Examples
Example 1
Input: s = "abaacbcbb"
Output: 5
Explanation: We do the following operations:
Example 2
Input: s = "aa"
Output: 2
Explanation: We cannot perform any operations, so we return the length of the original string.
Constraints
1 <= s.length <= 2 * 105
s consists only of lowercase English letters.
3223. Minimum Length of String After Operations
Medium
30 Points
Hash Table
String
Counting
You are given a string s.
You can perform the following process on s any number of times:
Return the minimum length of the final string s that you can achieve.
Examples
Example 1
Input: s = "abaacbcbb"
Output: 5
Explanation: We do the following operations:
Example 2
Input: s = "aa"
Output: 2
Explanation: We cannot perform any operations, so we return the length of the original string.