Minimum number of pairs required to make two strings same
Given two strings s1 and s2 of same length, the task is to count the minimum number of pairs of characters (c1, c2) such that by transforming c1 to c2 or c2 to c1 any number of times in any string make both the strings same. Examples: Input: s1 = "abb", s2 = "dad" Output: 2 Transform 'a' -> 'd',