Problem Description
Given a string text
of words separated by a single space and a string brokenLetters
of all distinct letter keys that are broken, return the number of words in text
that you can fully type using this keyboard.
Key Insights
- We need to count words that do not contain any letters from the
brokenLetters
string. - A word can only be typed if none of its characters are in the set of broken letters.
- Using a set data structure helps in efficiently checking whether a letter is broken.
Space and Time Complexity
Time Complexity: O(n * m), where n is the number of words in text
and m is the average length of the words.
Space Complexity: O(k), where k is the number of broken letters (up to 26).
Solution
The approach involves the following steps:
- Split the
text
string into individual words using space as a delimiter. - Create a set of broken letters for O(1) average time complexity in lookups.
- Iterate through each word and check if it contains any broken letters by checking against the set.
- Count the number of words that do not contain any broken letters and return this count.