LeetCode 389——找不同
1. 題目
2. 解答
2.1. 方法一
將 s 和 t 轉化為 Python 的列表,然後遍歷列表 s 的元素,將它們從列表 t 中刪除,最後列表 t 中會餘下一個元素,即為所求。
class Solution:
def findTheDifference(self, s, t):
"""
:type s: str
:type t: str
:rtype: str
"""
s_list = list(s)
t_list = list(t)
for i in s_list:
t_list.remove(i)
return t_list[0]
2.2. 方法二
將 t 轉化為 Python 的集合,由於集合元素的互異性,這個過程會去掉重複元素,然後再將其轉化為列表 r,此時 r 包含 t 中的所有字元。
遍歷 r 中的字元,然後分別計數其在 s 和 t 中出現的次數,如果二者不相等,則當前字元即為所求。
class Solution:
def findTheDifference(self, s, t):
"""
:type s: str
:type t: str
:rtype: str
"""
r = list(set(t))
result = ' '
for i in r:
if s.count(i) != t.count(i):
result = i
return result
2.3. 方法三
將 t 中所有字元的 ASCII 碼之和減去 s 中所有字元的 ASCII 碼之和,最後的差對應的字元即為所求。
class Solution {
public:
char findTheDifference(string s, string t) {
int count = 0;
string::iterator i1 = s.begin(), i2 = t.begin();
for (; i1 != s.end() && i2 != t.end(); i1++, i2++)
{
count += *i2 - *i1;
}
count = count + *i2;
return char(count);
}
};
2.4. 方法四
利用按位異或運算。假設有兩個數 a, b,按位異或可以實現兩個數的交換。
a = a ^ b
b = a ^ b = a ^ b ^ b = a ^ 0 = a
a = a ^ b = a ^ b ^ a = b
因此,我們可以將 s 和 t 中的元素按位異或,相同的元素按位異或之後都會變成零,最後的結果即為所求。
class Solution {
public:
char findTheDifference(string s, string t) {
int count = 0;
string::iterator i1 = s.begin(), i2 = t.begin();
for (; i1 != s.end() && i2 != t.end(); i1++, i2++)
{
count = *i2 ^ *i1 ^ count;
}
count = count ^ *i2;
return char(count);
}
};
獲取更多精彩,請關注「seniusen」!
相關文章
- LeetCode-389-找不同LeetCode
- LeetCode每日一題: 找不同(No.389)LeetCode每日一題
- 力扣(LeetCode)389力扣LeetCode
- LeetCode 389. Find the DifferenceLeetCode
- P3901 數列找不同
- LeetCode-162-尋找峰值LeetCode
- 【LeetCode動態規劃#04】不同的二叉搜尋樹(找規律,有點像智力題)LeetCode動態規劃
- LeetCode:尋找丟失的數字LeetCode
- leetcode 287 尋找重複的數LeetCode
- 【Leetcode】62. 不同路徑LeetCode
- LeetCode-62-不同路徑LeetCode
- LeetCode-6. Z字形變換(找規律)LeetCode
- LeetCode513. 找樹左下角的值LeetCode
- LeetCode-063-不同路徑IILeetCode
- 從OC和C#中找樂趣:相同又不同的delegateC#
- leetcode 684. 冗餘連線(圖中找環)LeetCode
- LeetCode--584. 尋找使用者推薦人LeetCode
- Leetcode-115. 不同的子序列LeetCode
- 蘋果簽名證書:共享證書和獨享證書找不同蘋果
- Oracle 11G OCP 1Z0-053 389Oracle
- LeetCode每日一題:找陣列的中心索引(No.724)LeetCode每日一題陣列索引
- LeetCode--尋找兩個有序陣列的中位數(05)LeetCode陣列
- Oracle OCP 1Z0 053 Q389(Recovery Writer Process)Oracle
- [leetCode]95. 不同的二叉搜尋樹 IILeetCode
- LeetCode-096-不同的二叉搜尋樹LeetCode
- LeetCode第4題:尋找兩個有序陣列的中位數LeetCode陣列
- Linked List Cycle leetcode II java (尋找連結串列環的入口)LeetCodeJava
- LeetCode-095-不同的二叉搜尋樹 IILeetCode
- LeetCode-153-尋找旋轉排序陣列中的最小值LeetCode排序陣列
- 【LeetCode】153. 尋找旋轉排序陣列中的最小值LeetCode排序陣列
- 給找 Bug 的工具(larastan)找 BugAST
- [LeetCode 刷題] 4. 尋找兩個有序陣列的中位數 (Hard)LeetCode陣列
- 每天一道leetcode142-尋找連結串列中環的入口LeetCode
- GO實現:leetcode之尋找兩個正序陣列的中位數GoLeetCode陣列
- 老司機如何找素材,如何找靈感?
- 用canvas實現一個自動識別兩張圖片差異(圖片找不同)的功能Canvas
- LeetCode解題(C++)-4. 尋找兩個有序陣列的中位數LeetCodeC++陣列
- 【LeetCode Hot 100】4. 尋找兩個正序陣列的中位數LeetCode陣列