Skip to content

Latest commit

 

History

History

1790

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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.

 

Example 1:

Input: s1 = "bank", s2 = "kanb"
Output: true
Explanation: For example, swap the first character with the last character of s2 to make "bank".

Example 2:

Input: s1 = "attack", s2 = "defend"
Output: false
Explanation: It is impossible to make them equal with one string swap.

Example 3:

Input: s1 = "kelb", s2 = "kelb"
Output: true
Explanation: The two strings are already equal, so no string swap operation is required.

Example 4:

Input: s1 = "abcd", s2 = "dcba"
Output: false

 

Constraints:

  • 1 <= s1.length, s2.length <= 100
  • s1.length == s2.length
  • s1 and s2 consist of only lowercase English letters.

Related Topics:
String

Similar Questions:

Solution 1.

// OJ: https://leetcode.com/problems/check-if-one-string-swap-can-make-strings-equal/
// Author: github.com/lzl124631x
// Time: O(N)
// Space: O(1)
class Solution {
public:
    bool areAlmostEqual(string a, string b) {
        int cnt[26] = {}, diff = 0;
        for (char c : a) cnt[c - 'a'] ++;
        for (char c : b) cnt[c - 'a']--;
        for (int n : cnt) {
            if (n) return false;
        }
        for (int i = 0; i < a.size(); ++i) {
            if (a[i] != b[i]) ++diff;
        }
        return diff == 0 || diff == 2;
    }
};

Solution 2.

// OJ: https://leetcode.com/problems/check-if-one-string-swap-can-make-strings-equal/
// Author: github.com/lzl124631x
// Time: O(N)
// Space: O(1)
class Solution {
public:
    bool areAlmostEqual(string a, string b) {
        int x = -1, y = -1;
        for (int i = 0; i < a.size(); ++i) {
            if (a[i] == b[i]) continue;
            if (x == -1) x = i;
            else if (y == -1) y = i;
            else return false;
        }
        return (x == -1 && y == -1) || (y != -1 && a[x] == b[y] && a[y] == b[x]);
    }
};