HTMLify

LeetCode - Remove All Occurrences of a Substring - Python
Views: 6 | Author: abh
class Solution:
    def removeOccurrences(self, s: str, part: str) -> str:
        while part in s:
            s = s.replace(part, "", 1)
            print(s)
        return s

Comments