Two strings are said to be anagrams of each other if the first string can be formed by rearranging the letters of the second word, or vice versa. In other words, both strings contain the same exact letters in the same exact frequency. For example, abcdc and dcbac are anagrams while abcdc and dcbad are not.
You are given two strings s1 and s2 of equal lengths. You can choose any character of s2 and replace it with any other character. You can repeat this as many times as you want.
Your task is to find the minimum number of such replacements you need to perform so that s2 becomes an anagram of s1
Input
Output
Print a single integer, denoting the minimum number of replacements to make s1 and s2 anagrams
Constraints
You can replace the first 'a' in s2 with b, s2 = "bba" which is anagram of s1