学习目标:
每日一题 - 找不同
学习内容:
给定两个字符串 s 和 t ,它们只包含小写字母。
字符串 t 由字符串 s 随机重排,然后在随机位置添加一个字母。
请找出在 t 中被添加的字母。

class Solution:
def findTheDifference(self, s: str, t: str) -> str:
am = 0
at = 0
for ch in s:
am += ord(ch)
for ch in t:
at += ord(ch)
return chr(abs(am-at))
