1347. Minimum Number of Steps to Make Two Strings Anagram
Medium
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:
Example 2:
Example 3:
Constraints:
1 <= s.length <= 5 * 104
s.length == t.length
s
andt
consist of lowercase English letters only.
解題
用陣列來記錄兩個單字各個字母出現次數
Runtime: 26 ms, faster than 71.43%
Memory Usage: 6.7 MB, less than 58.73%
Last updated