




Sponsored
Sponsored
This approach involves creating frequency counts for both strings. Loop through each character in both strings, updating a counter for each character. By comparing these counters, you can determine which character has a different count, revealing the additional character in string t.
The time complexity is O(n) where n is the length of s as we iterate over t once in the worst case. Space complexity is O(1) because the storage requirement is constant (the fixed size count array).
1#include <iostream>
2#include <unordered_map>
3using namespace std;
4
5char findTheDifference(string s, string t) {
6    unordered_map<char, int> count;
7    for (char c : s) count[c]++;
8    for (char c : t) {
9        if (--count[c] < 0) return c;
10    }
11    return '\0';
12}
13
14int main() {
15    cout << findTheDifference("abcd", "abcde") << endl;  // Output: e
16    cout << findTheDifference("", "y") << endl;  // Output: y
17    return 0;
18}This solution uses an unordered map (or hash map) to count the occurrences of each character in s. It then decrements the count while iterating through t and checks for negative counts to find the additional character.
This approach leverages the properties of the XOR bitwise operator. XOR'ing the same numbers results in 0 and XOR is commutative and associative, meaning the order of operations doesn't matter. By XOR'ing all characters in both strings, one additional character will be left out, since all others cancel each other out.
Time complexity is O(n) as both strings are traversed. Space complexity is O(1) because only a single variable is used.
1
The C solution iterates over each character in both s and t, applying the XOR operation between them. Given XOR's properties, each pair of identical characters across s and t will cancel each other out, leaving the extra character as the result.