LeetCode - 2828. Check if a String Is an Acronym of Words

henu·2023년 9월 6일
0

LeetCode

목록 보기
64/186

Solution

var isAcronym = function(words, s) {
    return words.reduce((acc, cur) => acc + cur[0], '') === s
};

Explanation

간단한 문제였다. reduce를 이용해서 각 단어의 첫 글자를 합친 후 s와 비교하면 끝이다.

0개의 댓글