2185. 统计包含给定前缀的字符串
难度
- Easy
- Medium
- Hard
思路
之前做过了,用 Python 自带的字符串查询函数即可,判断返回值是否为 0 ,如果是 0 ,说明确实是前缀,否则不是。
一行流累加即可。
代码
class Solution:
def prefixCount(self, words: List[str], pref: str) -> int:
return sum(w.find(pref) == 0 for w in words)
Comments NOTHING