python 找不一样 Find the Difference

给定两个字符串 s 和 t,它们只包含小写字母。python 字符串 t 由字符串 s 随机重排,而后在随机位置添加一个字母。code 请找出在 t 中被添加的字母。blog 示例:字符串 输入: s = "abcd" t = "abcde"get 输出: eio 解释: 'e' 是那个被添加的字母。class class Solution(object): def findTheDiff
相关文章
相关标签/搜索