[Leetcode] 1678. Goal Parser Interpretation (JS)

OROSY·2021년 4월 29일
0

Algorithms

목록 보기
12/38
post-thumbnail

출처

Leetcode 1678. Goal Parser Interpretation

문제

나의 코드

글자를 바꾸는 메소드는 replace라는 건 알고 있었지만, 실제로 사용해본 적은 없었다. 특히, 정규표현식을 사용해야한다는 데에 있어 진입 장벽이 어마무시했다는..

그래도 강의를 들으며 올렸던 블로그 글을 보면서 치다보니 그리 어렵진 않았다 :ㅇ
역시 익숙해지는게 중요하다는 걸 다시금 깨닫게 되는 하루!

1
2
3
var interpret = function(command) {
    return command.replace(/\(\)/g, 'o').replace(/\(al\)/g, 'al')
};
cs

실행 결과

profile
Life is a matter of a direction not a speed.

0개의 댓글