LeetCode - 1678. Goal Parser Interpretation

henu·2023년 8월 31일
0

LeetCode

목록 보기
32/186
post-thumbnail

Solution

var interpret = function(command) {
    return command.replaceAll('()', 'o').replaceAll('(al)', 'al')
};

Explanation

특정 문자열을 다른 문자열로 대체하는 문제이다.
간단하게 replaceAll 메소드를 사용해서 특정 문자열('()', 'o')을 다른 문자열로 대체할 수 있다.

0개의 댓글