给定两个字符串 s
和 t
,它们只包含小写字母。
字符串 t
由字符串 s
随机重排,然后在随机位置添加一个字母。
请找出在 t
中被添加的字母。
示例 1:
输入:s = "abcd", t = "abcde" 输出:"e" 解释:'e' 是那个被添加的字母。
示例 2:
输入:s = "", t = "y" 输出:"y"
提示:
0 <= s.length <= 1000
t.length == s.length + 1
s
和t
只包含小写字母
方法一:计数
使用数组(cnt
)统计 s
与 t
当中字符出现的次数:s[i]
进行 cnt[s[i] - 'a']++
,t[i]
进行 cnt[t[i] - 'a']--
。
完成统计后,找到符合 cnt[i] == -1
的 i
,返回即可(return 'a' + i
)。
时间复杂度
方法二:求和
由于 s
与 t
只存在一个不同元素,可以统计两者所有字符 ASCII 码之和,再进行相减(sum(t) - sum(s)
),即可得到 t
中那一个额外字符的 ASCII 码。
时间复杂度
class Solution:
def findTheDifference(self, s: str, t: str) -> str:
counter = Counter(s)
for c in t:
if counter[c] <= 0:
return c
counter[c] -= 1
return None
class Solution {
public char findTheDifference(String s, String t) {
int[] counter = new int[26];
for (int i = 0; i < s.length(); ++i) {
int index = s.charAt(i) - 'a';
++counter[index];
}
for (int i = 0; i < t.length(); ++i) {
int index = t.charAt(i) - 'a';
if (counter[index] <= 0) {
return t.charAt(i);
}
--counter[index];
}
return ' ';
}
}
function findTheDifference(s: string, t: string): string {
const n = s.length;
const count = new Array(26).fill(0);
for (let i = 0; i < n; i++) {
count[s.charCodeAt(i) - 'a'.charCodeAt(0)]++;
count[t.charCodeAt(i) - 'a'.charCodeAt(0)]--;
}
count[t.charCodeAt(n) - 'a'.charCodeAt(0)]--;
return String.fromCharCode(
'a'.charCodeAt(0) + count.findIndex(v => v !== 0),
);
}
function findTheDifference(s: string, t: string): string {
return String.fromCharCode(
[...t].reduce((r, v) => r + v.charCodeAt(0), 0) -
[...s].reduce((r, v) => r + v.charCodeAt(0), 0),
);
}
impl Solution {
pub fn find_the_difference(s: String, t: String) -> char {
let s = s.as_bytes();
let t = t.as_bytes();
let n = s.len();
let mut count = [0; 26];
for i in 0..n {
count[(s[i] - b'a') as usize] += 1;
count[(t[i] - b'a') as usize] -= 1;
}
count[(t[n] - b'a') as usize] -= 1;
char::from(b'a' + count.iter().position(|&v| v != 0).unwrap() as u8)
}
}
impl Solution {
pub fn find_the_difference(s: String, t: String) -> char {
let mut ans = 0;
for c in s.as_bytes() {
ans ^= c;
}
for c in t.as_bytes() {
ans ^= c;
}
char::from(ans)
}
}
char findTheDifference(char *s, char *t) {
int n = strlen(s);
int count[26] = {0};
for (int i = 0; i < n; i++) {
count[s[i] - 'a']++;
count[t[i] - 'a']--;
}
count[t[n] - 'a']--;
int i;
for (i = 0; i < 26; i++) {
if (count[i]) {
break;
}
}
return 'a' + i;
}
char findTheDifference(char *s, char *t) {
int n = strlen(s);
char ans = 0;
for (int i = 0; i < n; i++) {
ans ^= s[i];
ans ^= t[i];
}
ans ^= t[n];
return ans;
}