LeetCode - 2185. Counting Words With a Given Prefix

henu·2023년 10월 11일
0

LeetCode

목록 보기
116/186

Solution

var prefixCount = function(words, pref) {
    return words.filter(word => word.startsWith(pref)).length
};

Explanation

한 줄로 해결이 가능한 문제였다.
startsWith 메소드를 이용하면 문자열이 특정 문자열로 시작하는지 쉽게 확인이 가능하다.
이 메소드를 사용해서 words배열을 필터링해주면 된다.

0개의 댓글