Problem Description
You are given a string s. A split is called good if you can split s into two non-empty strings s_left and s_right where their concatenation is equal to s (i.e., s_left + s_right = s) and the number of distinct letters in s_left and s_right is the same. Return the number of good splits you can make in s.
Key Insights
- A split is good if the number of distinct characters in both parts of the split is equal.
- We can keep track of the number of distinct characters in both the left and right parts as we iterate through the string.
- Using hash tables (or dictionaries) can help efficiently count and compare the distinct characters.
- The problem can be solved in a single pass through the string by maintaining running counts of distinct characters.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the string. Space Complexity: O(1), since we only store counts of 26 lowercase letters.
Solution
We can use two hash tables (or dictionaries): one to count characters in the left part of the string and the other to count characters in the right part. We initialize the right part with all characters from the string and progressively move one character from the right to the left while updating our counts. Whenever the counts of distinct characters match, we have found a good split.