本文主要是介绍LeetCode 389. 找不同 (异或),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Description
给定两个字符串 s 和 t,它们只包含小写字母。
字符串 t 由字符串 s 随机重排,然后在随机位置添加一个字母。
请找出在 t 中被添加的字母。
示例 1:输入:s = "abcd", t = "abcde"
输出:"e"
解释:'e' 是那个被添加的字母。
示例 2:输入:s = "", t = "y"
输出:"y"
示例 3:输入:s = "a", t = "aa"
输出:"a"
示例 4:输入:s = "ae", t = "aea"
输出:"a"来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/find-the-difference
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
Solution 1
计数
Solution 2 异或
类似于136. 只出现一次的数字,使用异或得到不同的部分。
class Solution:def findTheDifference(self, s: str, t: str) -> str:res = 0for ch in s:res ^= ord(ch)for ch in t:res ^= ord(ch)return chr(res)
这篇关于LeetCode 389. 找不同 (异或)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!