[LeetCode] 1910. Remove All Occurrences of a Substring
풀이
무한루프 안에서 s안에 part가 있는지 indexOf를 사용하여 풀이
코드
/**
* @param {string} s
* @param {string} part
* @return {string}
*/
var removeOccurrences = function(s, part) {
// 무한루프
while(true){
// part가 있는지 체크
const index = s.indexOf(part);
if(index === -1){
// 없다면 탈출
break;
} else {
// 있다면 빈 문자열로 교체
s=s.replace(part,'')
}
}
return s;
};
정리
출처
/**
* @param {string} s
* @param {string} part
* @return {string}
*/
var removeOccurrences = function(s, part) {
// 무한루프
while(true){
// part가 있는지 체크
const index = s.indexOf(part);
if(index === -1){
// 없다면 탈출
break;
} else {
// 있다면 빈 문자열로 교체
s=s.replace(part,'')
}
}
return s;
};
출처
https://leetcode.com/problems/remove-all-occurrences-of-a-substring/
Author And Source
이 문제에 관하여([LeetCode] 1910. Remove All Occurrences of a Substring), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@assash17/LeetCode-1910.-Remove-All-Occurrences-of-a-Substring저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)