1790. Check if One String Swap Can Make Strings Equal
1790. Check if One String Swap Can Make Strings Equal
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.
Example 1:
1 | Input: s1 = "bank", s2 = "kanb" |
Example 2:
1 | Input: s1 = "attack", s2 = "defend" |
Example 3:
1 | Input: s1 = "kelb", s2 = "kelb" |
Constraints:
1 <= s1.length, s2.length <= 100s1.length == s2.lengths1ands2consist of only lowercase English letters.
Hints/Notes
- 2025/03/15 Q1
- hashMap
- Leetcode solution
Solution
Language: C++
1 | class Solution { |