Problem Description
Given a string array words
, return an array of all characters that show up in all strings within the words
(including duplicates). You may return the answer in any order.
Key Insights
- Each character must appear in all strings.
- Count the frequency of each character in each string.
- The minimum frequency across all strings determines how many times that character should appear in the result.
Space and Time Complexity
Time Complexity: O(N * M), where N is the number of strings and M is the average length of the strings.
Space Complexity: O(1), since we are only using a fixed-size array to count characters (26 lowercase English letters).
Solution
To solve the problem, we will:
- Utilize a list of size 26 (for each letter in the English alphabet) to maintain the minimum frequency of each character across all strings.
- Iterate through each string and count the frequency of characters using a temporary list.
- Update the minimum frequency list by comparing with the current string's frequencies.
- Construct the result based on the minimum frequency list.