Skip to content

Commit 10a7c12

Browse files
authored
Added solution for 2255
1 parent 9da59be commit 10a7c12

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
use std::cmp::min;
2+
3+
impl Solution {
4+
// Loop through the words and compare word with substring of same size. If they match, add one to the counter. In the end, return the counter value
5+
pub fn count_prefixes(words: Vec<String>, s: String) -> i32 {
6+
let mut counter = 0;
7+
for word in words {
8+
let smallest_length = min(word.len(), s.len());
9+
if &s[0..smallest_length] == word {
10+
counter += 1;
11+
}
12+
}
13+
return counter;
14+
}
15+
}

0 commit comments

Comments
 (0)