Return the minimum number of operations you need to perform to make the three strings equal if there is a way to make them equal, otherwise, return -1. Example 1: Input: s1 = "abc", s2 = "abb", s3 = "ab"Output: 2Explanation: Performing operations on s1 and s2 once will lead to...