Class Solution
-
- All Implemented Interfaces:
public final class Solution1790 - Check if One String Swap Can Make Strings Equal.
Easy
You are given two strings
s1ands2of 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
trueif it is possible to make both strings equal by performing at most one string swap on exactly one of the strings. Otherwise, returnfalse.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.
Constraints:
1 <= s1.length, s2.length <= 100s1.length == s2.lengths1ands2consist of only lowercase English letters.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final BooleanareAlmostEqual(String s1, String s2)-
-
Method Detail
-
areAlmostEqual
final Boolean areAlmostEqual(String s1, String s2)
-
-
-
-