LeetCode - 1967. Number of Strings That Appear as Substrings in Word

henu·2023년 9월 28일
0

LeetCode

목록 보기
90/186

Solution

var numOfStrings = function(patterns, word) {
    let count = 0;

    for(ele of patterns) {
        if(word.includes(ele)) count++
    }

    return count
};

Explanation

금방 후딱 푼 문제였다.
includes 메소드를 이용하면 쉽게 해결가능하다.

0개의 댓글