Problem Description
Given two strings s
and goal
, return true
if you can swap two letters in s
so the result is equal to goal
, otherwise, return false
. Swapping letters is defined as taking two indices i
and j
(0-indexed) such that i != j
and swapping the characters at s[i]
and s[j]
.
Key Insights
- The strings
s
andgoal
must have the same length to be considered for buddy strings. - If
s
equalsgoal
, then there must be at least one character that appears more than once to allow a valid swap. - If
s
andgoal
differ at exactly two positions, swapping those two characters should make the strings equal.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
To solve the problem, we will:
- Check if the lengths of
s
andgoal
are equal. If not, returnfalse
. - If
s
is equal togoal
, check for duplicates ins
. If a duplicate exists, returntrue
; otherwise, returnfalse
. - If
s
andgoal
are not equal, identify the indices where the characters differ. If there are exactly two differing indices, ensure that swapping the characters at these indices ins
results ingoal
.
This approach utilizes a single traversal of the strings and constant space for the index storage.