Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 579 Bytes

Question_1910.md

File metadata and controls

22 lines (18 loc) · 579 Bytes

LeetCode Records - Question 1910 Remove All Occurrences of a Substring

Attempt 1: Use replaceFirst() to remove the substring

class Solution {
    public String removeOccurrences(String s, String part) {
        String prevStr = s;
        String nextStr = prevStr.replaceFirst(part, "");

        while (!prevStr.equals(nextStr)) {
            prevStr = nextStr;
            nextStr = prevStr.replaceFirst(part, "");
        }
        
        return prevStr;
    }
}
  • Runtime: 9 ms (Beats: 18.10%)
  • Memory: 44.45 MB (Beats: 29.14%)