Class Solution
-
- All Implemented Interfaces:
public final class Solution2840 - Check if Strings Can be Made Equal With Operations II.
Medium
You are given two strings
s1ands2, both of lengthn, consisting of lowercase English letters.You can apply the following operation on any of the two strings any number of times:
Choose any two indices
iandjsuch thati < jand the differencej - iis even , then swap the two characters at those indices in the string.
Return
trueif you can make the stringss1ands2equal, andfalseotherwise.Example 1:
Input: s1 = "abcdba", s2 = "cabdab"
Output: true
Explanation: We can apply the following operations on s1:
Choose the indices i = 0, j = 2. The resulting string is s1 = "cbadba".
Choose the indices i = 2, j = 4. The resulting string is s1 = "cbbdaa".
Choose the indices i = 1, j = 5. The resulting string is s1 = "cabdab" = s2.
Example 2:
Input: s1 = "abe", s2 = "bea"
Output: false
Explanation: It is not possible to make the two strings equal.
Constraints:
n == s1.length == s2.length<code>1 <= n <= 10<sup>5</sup></code>
s1ands2consist only of lowercase English letters.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-