LeetCode 1347. Minimum Number of Steps to Make Two Strings Anagram
2022/8/28 23:53:48
本文主要是介绍LeetCode 1347. Minimum Number of Steps to Make Two Strings Anagram,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
原题链接在这里:https://leetcode.com/problems/minimum-number-of-steps-to-make-two-strings-anagram/
题目:
You are given two strings of the same length s
and t
. In one step you can choose any character of t
and replace it with another character.
Return the minimum number of steps to make t
an anagram of s
.
An Anagram of a string is a string that contains the same characters with a different (or the same) ordering.
Example 1:
Input: s = "bab", t = "aba" Output: 1 Explanation: Replace the first 'a' in t with b, t = "bba" which is anagram of s.
Example 2:
Input: s = "leetcode", t = "practice" Output: 5 Explanation: Replace 'p', 'r', 'a', 'i' and 'c' from t with proper characters to make t anagram of s.
Example 3:
Input: s = "anagram", t = "mangaar" Output: 0 Explanation: "anagram" and "mangaar" are anagrams.
Constraints:
1 <= s.length <= 5 * 104
s.length == t.length
s
andt
consist of lowercase English letters only.
题解:
One swap is to make a char c which is not in t become a char in t.
Map to count occurance in s and not in t.
For every extra char, which count is +, it could be used to swap to a char in t but not in s, which is -.
Time Complexity: O(n). n = s.length().
Space: O(1).
AC Java:
1 class Solution { 2 public int minSteps(String s, String t) { 3 int [] map = new int [26]; 4 for(int i = 0; i < s.length(); i++){ 5 map[s.charAt(i) - 'a']++; 6 map[t.charAt(i) - 'a']--; 7 } 8 9 int res = 0; 10 for(int num : map){ 11 if(num > 0){ 12 res += num; 13 } 14 } 15 16 return res; 17 } 18 }
类似Minimum Number of Steps to Make Two Strings Anagram II.
这篇关于LeetCode 1347. Minimum Number of Steps to Make Two Strings Anagram的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15在使用平台私钥进行解密时提示 "私钥解密失败" 错误信息是什么原因?-icode9专业技术文章分享
- 2024-11-15Layui框架有哪些方式引入?-icode9专业技术文章分享
- 2024-11-15Layui框架中有哪些减少对全局环境的污染方法?-icode9专业技术文章分享
- 2024-11-15laydate怎么关闭自动的日期格式校验功能?-icode9专业技术文章分享
- 2024-11-15laydate怎么取消初始日期校验?-icode9专业技术文章分享
- 2024-11-15SendGrid 的邮件发送时,怎么设置回复邮箱?-icode9专业技术文章分享
- 2024-11-15使用 SendGrid API 发送邮件后获取到唯一的请求 ID?-icode9专业技术文章分享
- 2024-11-15mailgun 发送邮件 tags标签最多有多少个?-icode9专业技术文章分享
- 2024-11-15mailgun 发送邮件 怎么批量发送给多个人?-icode9专业技术文章分享
- 2024-11-15如何搭建web开发环境并实现 web项目在浏览器中访问?-icode9专业技术文章分享