2255. Count Prefixes of a Given String #
题目 #
- 给你一个字符串数组
words
和一个字符串s
,其中words[i]
和s
只包含 小写英文字母 。 - 请你返回
words
中是字符串s
前缀 的 字符串数目 。 - 一个字符串的 前缀 是出现在字符串开头的子字符串。子字符串 是一个字符串中的连续一段字符序列。
思路 #
模拟 #
代码 #
模拟 #
class Solution {
public int countPrefixes(String[] words, String s) {
int ans = 0;
for (String word: words) {
if (word.length() <= s.length() && s.substring(0, word.length()).equals(word)) ans++;
}
return ans;
}
}