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的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-11国产医疗级心电ECG采集处理模块
- 2025-01-10Rakuten 乐天积分系统从 Cassandra 到 TiDB 的选型与实战
- 2025-01-09CMS内容管理系统是什么?如何选择适合你的平台?
- 2025-01-08CCPM如何缩短项目周期并降低风险?
- 2025-01-08Omnivore 替代品 Readeck 安装与使用教程
- 2025-01-07Cursor 收费太贵?3分钟教你接入超低价 DeepSeek-V3,代码质量逼近 Claude 3.5
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南