LeetCode 1790. Check if One String Swap Can Make Strings Equal
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:
Example 2:
Example 3:
Example 4:
Constraints:
1 <= s1.length, s2.length <= 100
s1.length == s2.length
s1
ands2
consist of only lowercase English letters.
Solution
PreviousLeetCode 1788. Maximize the Beauty of the GardenNextLeetCode 1791. Find Center of Star Graph
Last updated