1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/cs/count-the-number-of-consistent-strings.cs
2024-09-12 11:09:22 +02:00

19 lines
506 B
C#

public class Solution {
private static int GetMask(string allowed) {
var mask = 0;
foreach (var c in allowed) {
mask |= 1 << (c - 'a');
}
return mask;
}
private static bool IsConsistent(int mask, string word)
=> word.All(c => (mask & (1 << (c - 'a'))) != 0);
public int CountConsistentStrings(string allowed, string[] words) {
var mask = GetMask(allowed);
return words.Count(word => IsConsistent(mask, word));
}
}