Problem Description
You are given a string word
. A letter c
is called special if it appears both in lowercase and uppercase in word
, and every lowercase occurrence of c
appears before the first uppercase occurrence of c
. Return the number of special letters in word
.
Key Insights
- A letter is special if it exists in both cases (lowercase and uppercase).
- All occurrences of the lowercase version must appear before any occurrence of the uppercase version.
- We can use a hash table to track the lowercase and uppercase occurrences of each character efficiently.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1) (constant space for the hash table since it only contains a limited number of characters)
Solution
We will iterate through the string while using a hash table to keep track of the state of each character (whether we've seen lowercase or uppercase). For each character encountered:
- If it's lowercase, we mark it as seen in lowercase.
- If it's uppercase, we check if the corresponding lowercase has been seen and that no lowercase has been seen after this uppercase.
- At the end of the iteration, we count how many letters are special based on the collected data.