Skip to main content

Clear Digits

Problem Description​

You are given a string s.

Your task is to remove all digits by doing this operation repeatedly:

  1. Delete the first digit and the closest non-digit character to its left. Return the resulting string after removing all digits.

Examples​

Example 1:

Input: s = "abc"
Output: "abc"
Explanation:
There is no digit in the string.

Example 2:

Input: s = "cb34"
Output: ""
Explanation:
First, we apply the operation on s[2], and s becomes "c4".
Then we apply the operation on s[1], and s becomes "".



Complexity Analysis​

*** Time Complexity:** O(nβˆ—βˆ—2)O(n**2)

*** Space Complexity:** O(n)O(n)

Constraints​

  • 1 <= s.length <= 100
  • s consists only of lowercase English letters and digits.

Solution​

Approach​

To remove all digits from a string, iterate through the string, checking each character. If a digit is found, remove it and reset the index to the beginning of the string to ensure all digits are considered, even those that may shift positions after removal. Continue this process until the end of the string is reached, ensuring all digits are removed. Return the modified string without any digits.

Code in Different Languages​

Written by @ImmidiSivani

class Solution {
public:
std::string clearDigits(std::string s) {
for (int i = 0; i < s.length(); ) {
if (isdigit(s[i])) {
s.erase(i, 1);
i = 0;
} else {
i++;
}
}
return s;
}
};

References​