0389. Find the Difference

389. Find the Difference #

题目 #

给定两个字符串 st,它们只包含小写字母。

字符串 t 由字符串 s 随机重排,然后在随机位置添加一个字母。

找出在 t 中被添加的字母。

思路 #

代码 #

class Solution {
    public char findTheDifference(String s, String t) {
        char res = 0;
        for (int i = 0; i < s.length(); i++) res ^= s.charAt(i);
        for (int i = 0; i < t.length(); i++) res ^= t.charAt(i);
        return res;
    }
}