2185-counting-words-with-a-given-prefix

DevGod
Vtuber
/** * @param {string[]} words * @param {string} pref * @return {number} */var prefixCount = function(words, pref) { return words.reduce( (sum,el)=>sum + el.startsWith(pref), 0);};
class Solution: def prefixCount(self, words: List[str], pref: str) -> int: return sum([1 for word in words if word.startswith(pref)])