Problem Description
You are given two strings s1 and s2 of equal length. A string swap is an operation where you choose two indices in a string (not necessarily different) and swap the characters at these indices. Return true if it is possible to make both strings equal by performing at most one string swap on exactly one of the strings. Otherwise, return false.
Key Insights
- The two strings must be of equal length.
- If the strings are already equal, no swaps are needed, and the answer is true.
- If the strings differ in more than two characters, it's impossible to make them equal with a single swap.
- If the strings differ in exactly two characters, we can check if swapping those characters in one string can make it equal to the other.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
The solution involves comparing the two strings character by character. We can maintain a list of indices where the characters differ. If the number of differing positions is zero, we return true (the strings are equal). If there are exactly two differing positions, we check if swapping the characters at those positions in one string makes it equal to the other. If there are more than two differing positions, we return false.