地址:https://leetcode-cn.com/problems/buddy-strings/
给你两个字符串 s 和 goal ,只要我们可以通过交换 s 中的两个字母得到与 goal 相等的结果,就返回 true ;否则返回 false 。
交换字母的定义是:取两个下标 i 和 j (下标从 0 开始)且满足 i != j ,接着交换 s[i] 和 s[j] 处的字符。
例如,在 "abcd" 中交换下标 0 和下标 2 的元素可以生成 "cbad" 。
示例1
输入:s = "ab", goal = "ba"
输出:true
解释:你可以交换 s[0] = 'a' 和 s[1] = 'b' 生成 "ba",此时 s 和 goal 相等。
示例2
输入:s = "ab", goal = "ab"
输出:false
解释:你只能交换 s[0] = 'a' 和 s[1] = 'b' 生成 "ba",此时 s 和 goal 不相等。
示例3
输入:s = "aa", goal = "aa"
输出:true
解释:你可以交换 s[0] = 'a' 和 s[1] = 'a' 生成 "aa",此时 s 和 goal 相等。
示例4
输入:s = "aaaaaaabc", goal = "aaaaaaacb"
输出:true
class Solution:
def buddyStrings(self, s: str, goal: str) -> bool:
if len(s) != len(goal):
return False
sc = Counter(s)
gc = Counter(goal)
if s == goal:
if any(sc[k]>1 for k in sc):
return True
else:
return False
for k in sc:
if k not in sc:
return False
else:
if sc[k] != gc[k]:
return False
count = 0
for i,j in zip(s,goal):
if i != j:
count += 1
if count > 2:
return False
return True
class Solution:
def buddyStrings(self, s: str, goal: str) -> bool:
if len(s) != len(goal):
return False
if s == goal:
if len(set(s)) < len(goal):
return True
else:
return False
diff = [(a, b) for a, b in zip(s, goal) if a != b]
return len(diff) == 2 and diff[0][0] == diff[1][1] and diff[0][1] == diff[1][0]