欢迎光临散文网 会员登陆 & 注册

leetcode1790. Check if One String Swap Can Make Strings Equal

2022-03-16 18:18 作者:您是打尖儿还是住店呢  | 我要投稿

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 = "kanb"Output: trueExplanation: For example, swap the first character with the last character of s2 to make "bank".

Example 2:

Input: s1 = "attack", s2 = "defend"Output: falseExplanation: It is impossible to make them equal with one string swap.

Example 3:

Input: s1 = "kelb", s2 = "kelb"Output: trueExplanation: The two strings are already equal, so no string swap operation is required.

 

Constraints:

  • 1 <= s1.length, s2.length <= 100

  • s1.length == s2.length

  • s1 and s2 consist of only lowercase English letters.

慢点就慢点吧,

Runtime: 3 ms, faster than 13.40% of Java online submissions for Check if One String Swap Can Make Strings Equal.

Memory Usage: 42.7 MB, less than 12.62% of Java online submissions for Check if One String Swap Can Make Strings Equal.


leetcode1790. Check if One String Swap Can Make Strings Equal的评论 (共 条)

分享到微博请遵守国家法律