
[LeetCode] 1790. Check if One String Swap Can Make Strings Equal (Python)
·
알고리즘/LeetCode
난이도: Easy문제 설명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 =..